move cords to sequences.cords

db4
Joe Groff 2009-11-24 22:56:42 -08:00
parent 50f7dff422
commit 46f0aa6421
7 changed files with 10 additions and 8 deletions

View File

@ -1,8 +1,10 @@
! (c)Joe Groff bsd license
USING: accessors alien.c-types arrays assocs classes combinators
combinators.short-circuit cords fry kernel locals math
combinators.short-circuit fry kernel locals math
math.vectors math.vectors.simd math.vectors.simd.intrinsics sequences ;
FROM: alien.c-types => char uchar short ushort int uint longlong ulonglong float double ;
FROM: alien.c-types =>
char uchar short ushort int uint longlong ulonglong
float double ;
IN: math.vectors.conversion
ERROR: bad-vconvert from-type to-type ;

View File

@ -1,8 +1,8 @@
! (c)2009 Slava Pestov, Joe Groff bsd license
USING: accessors alien alien.c-types alien.data combinators
cords cpu.architecture fry generalizations kernel libc locals
math math.libm math.order math.ranges math.vectors sequences
sequences.private specialized-arrays vocabs.loader ;
sequences.cords cpu.architecture fry generalizations kernel
libc locals math math.libm math.order math.ranges math.vectors
sequences sequences.private specialized-arrays vocabs.loader ;
QUALIFIED-WITH: alien.c-types c
SPECIALIZED-ARRAYS:
c:char c:short c:int c:longlong

View File

@ -1,5 +1,5 @@
USING: cords strings tools.test kernel sequences ;
IN: cords.tests
USING: sequences.cords strings tools.test kernel sequences ;
IN: sequences.cords.tests
[ "hello world" ] [ "hello" " world" cord-append dup like ] unit-test
[ "hello world" ] [ { "he" "llo" " world" } cord-concat dup like ] unit-test

View File

@ -2,7 +2,7 @@
! See http://factorcode.org/license.txt for BSD license.
USING: accessors assocs sequences sorting binary-search math
math.order arrays combinators kernel ;
IN: cords
IN: sequences.cords
<PRIVATE