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