]> gitweb.factorcode.org Git - factor.git/blob - core/byte-arrays/byte-arrays.factor
d5d61c2980d185b037debe2004056a0db56afc44
[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 M: byte-array clone (clone) ; inline
11 M: byte-array clone-like
12     over byte-array? [ drop clone ] [ call-next-method ] if ; inline
13 M: byte-array length length>> ; inline
14 M: byte-array nth-unsafe swap integer>fixnum alien-unsigned-1 ; inline
15 M: byte-array set-nth-unsafe swap integer>fixnum set-alien-unsigned-1 ; inline
16 : >byte-array ( seq -- byte-array ) B{ } clone-like ; inline
17 M: byte-array new-sequence drop (byte-array) ; inline
18
19 M: byte-array equal?
20     over byte-array? [ sequence= ] [ 2drop f ] if ;
21
22 M: byte-array resize
23     resize-byte-array ; inline
24
25 INSTANCE: byte-array sequence
26
27 : 1byte-array ( x -- byte-array ) B{ } 1sequence ; inline
28
29 : 2byte-array ( x y -- byte-array ) B{ } 2sequence ; inline
30
31 : 3byte-array ( x y z -- byte-array ) B{ } 3sequence ; inline
32
33 : 4byte-array ( w x y z -- byte-array ) B{ } 4sequence ; inline