]> gitweb.factorcode.org Git - factor.git/blob - core/byte-arrays/byte-arrays.factor
calendar.format: make duration>human-readable more human readable
[factor.git] / core / byte-arrays / byte-arrays.factor
1 ! Copyright (C) 2007, 2009 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: accessors alien.accessors kernel math sequences
4 sequences.private ;
5 IN: byte-arrays
6
7 BUILTIN: byte-array
8 { length array-capacity read-only initial: 0 } ;
9
10 MIXIN: byte-sequence
11
12 PRIMITIVE: (byte-array) ( n -- byte-array )
13 PRIMITIVE: <byte-array> ( n -- byte-array )
14 PRIMITIVE: resize-byte-array ( n byte-array -- new-byte-array )
15
16 M: byte-array clone (clone) ; inline
17 M: byte-array clone-like
18     over byte-array? [ drop clone ] [ call-next-method ] if ; inline
19 M: byte-array length length>> ; inline
20 M: byte-array nth-unsafe swap integer>fixnum alien-unsigned-1 ; inline
21 M: byte-array set-nth-unsafe swap integer>fixnum set-alien-unsigned-1 ; inline
22 M: byte-array new-sequence drop (byte-array) ; inline
23 M: byte-array equal? over byte-array? [ sequence= ] [ 2drop f ] if ;
24 M: byte-array hashcode* [ sequence-hashcode ] recursive-hashcode ;
25 M: byte-array resize resize-byte-array ; inline
26
27 INSTANCE: byte-array sequence
28 INSTANCE: byte-array byte-sequence
29
30 : >byte-array ( seq -- byte-array ) B{ } clone-like ; inline
31 : 1byte-array ( x -- byte-array ) B{ } 1sequence ; inline
32 : 2byte-array ( x y -- byte-array ) B{ } 2sequence ; inline
33 : 3byte-array ( x y z -- byte-array ) B{ } 3sequence ; inline
34 : 4byte-array ( w x y z -- byte-array ) B{ } 4sequence ; inline