]> gitweb.factorcode.org Git - factor.git/blobdiff - core/byte-arrays/byte-arrays.factor
Faster conversion of sbufs, vectors and byte-vectors to their corresponding fixed...
[factor.git] / core / byte-arrays / byte-arrays.factor
index 50ea4b32ba3cf9f106c45eb5b88adbaa7fe3b2c1..f981e758d79e3bd3c76613a74405033c9df3ca8b 100644 (file)
@@ -9,7 +9,6 @@ M: byte-array length length>> ;
 M: byte-array nth-unsafe swap >fixnum alien-unsigned-1 ;
 M: byte-array set-nth-unsafe swap >fixnum set-alien-unsigned-1 ;
 : >byte-array ( seq -- byte-array ) B{ } clone-like ; inline
-M: byte-array like drop dup byte-array? [ >byte-array ] unless ;
 M: byte-array new-sequence drop <byte-array> ;
 
 M: byte-array equal?