factor/basis
Slava Pestov c105b033ef Merge branch 'master' of git://factorcode.org/git/factor 2009-07-22 02:06:47 -05:00
..
alarms
alien moved alien.inline and alien.marshall to extra 2009-07-14 22:39:27 +12:00
ascii
base64
biassocs
binary-search
bit-arrays bit-arrays: specialize set-bits and clear-bits 2009-07-16 23:49:13 -05:00
bit-sets bit-sets: efficient bitwise operations on bit-arrays 2009-07-02 21:58:49 -05:00
bit-vectors growable vocabulary: make 'contract' generic so that only real vectors clear popped elements; add resize method for struct-arrays, add new struct-vectors vocabulary 2009-07-07 15:01:30 -05:00
bitstreams Move constructors vocabulary to extra and refactor basis code not to use it 2009-06-13 18:47:19 -05:00
bootstrap
boxes
cache
cairo separate component format from component order in image objects 2009-06-22 11:20:54 -05:00
calendar
channels
checksums 50% speedup using unsafe nth/set-nth/exchange in checksums.sha 2009-06-21 00:58:36 -05:00
circular circular: Fix rotate-circular 2009-06-09 18:28:53 -05:00
cocoa cocoa.windows: Fix help lint 2009-06-20 15:14:45 -05:00
colors
columns
combinators combinators.short-circuit: fix unoptimized behavior to match optimized behavior, improved unit tests 2009-07-18 06:38:34 -05:00
command-line
compiler Merge branch 'master' of git://factorcode.org/git/factor 2009-07-22 02:06:47 -05:00
compression Move constructors vocabulary to extra and refactor basis code not to use it 2009-06-13 18:47:19 -05:00
concurrency
cords
core-foundation
core-graphics separate component format from component order in image objects 2009-06-22 11:20:54 -05:00
core-text
cpu Improve code generation for shift word: add intrinsics for fixnum-shift-fast in the case where the shift count is not constant, transform 1 swap shift into a more overflow check with open-coded fast case, transform bitand into fixnum-bitand in more cases 2009-07-16 23:50:48 -05:00
csv
db
debugger FROM: and RENAME: give a more meaningful error if the vocabulary does not exist 2009-07-18 06:51:29 -05:00
definitions/icons
delegate
deques
disjoint-sets disjoint-sets: add some tests for compiler bug; eventually more tests should be written for this vocab 2009-06-30 16:08:16 -05:00
dlists
documents
editors vocabs.hierarchy: more refactoring, update existing code for new API 2009-07-06 04:55:23 -05:00
endian
environment
eval
farkup Fixing some test failures after url.encoding change 2009-07-09 19:02:15 -05:00
fonts
formatting
fry
ftp
functors functors: add MIXIN:, SINGLETON: 2009-07-22 02:06:24 -05:00
furnace
game-input win32 support for window-controls 2009-06-18 11:41:34 -05:00
generalizations fix nover, add unit test 2009-06-19 12:58:17 -05:00
glib
globs
grouping
hash2
heaps slightly faster heaps, add benchmark 2009-07-18 00:52:24 -05:00
help help.lint.checks: don't throw strings 2009-07-16 21:38:54 -05:00
hints
html
http Fixing some test failures after url.encoding change 2009-07-09 19:02:15 -05:00
images some misc categorizations and factorings for image component formats 2009-07-01 13:52:26 -05:00
inspector
interpolate
interval-maps
inverse
io io.launcher: unnecessary word 2009-07-09 06:31:38 -05:00
iokit
json Fix a error parsing out nested arrays. 2009-06-06 20:49:44 -07:00
lcs
libc
linked-assocs
listener Recent vocabs.parser change had a regression: vocabs with no roots (scratchpad) were excluded from default use list. Also move with-interactive-vocabs to listener vocab 2009-06-07 21:59:13 -05:00
lists
literals oops, forgot a USING 2009-06-18 09:57:49 -05:00
locals
logging
macros
match
math preserve sequence type in math.matrices:cross 2009-07-07 16:26:50 -05:00
memoize
mime
mirrors
models Fix help-lint for models.range and histogram 2009-06-19 14:33:43 -05:00
multiline
nibble-arrays
nmake
none
opengl Split off annotation code from opengl into opengl.annotations to reduce deployed image size 2009-07-17 01:06:34 -05:00
openssl
pack
pango
peg
persistent Documentation fix for PV{ 2009-06-15 22:24:21 +02:00
porter-stemmer minor indentation changes 2009-06-11 11:02:40 -05:00
present vocabs.hierarchy: more refactoring, update existing code for new API 2009-07-06 04:55:23 -05:00
prettyprint 'see' on tuple classes didn't show initial values if slot type was not declared 2009-06-14 17:46:29 -05:00
promises
quoted-printable
quoting
random
refs
regexp
roman minor cleanup 2009-06-18 17:32:10 -05:00
search-deques
see 'see' on tuple classes didn't show initial values if slot type was not declared 2009-06-14 17:46:29 -05:00
sequences
serialize Automatically load needed vocabularies when deserializing words 2009-06-19 13:03:01 +02:00
shuffle
simple-flat-file
smtp
sorting
soundex
specialized-arrays Move ptrdiff_t arrays to specialized-arrays.ptrdiff_t 2009-07-17 03:51:23 -05:00
specialized-vectors byte-length for specialized-vectors 2009-07-07 16:27:14 -05:00
splitting/monotonic
stack-checker combinators.short-circuit: speed up in non-optimized code 2009-07-18 03:33:45 -05:00
strings/tables
struct-arrays struct-arrays and struct-vectors: fix unit tests 2009-07-07 19:15:50 -05:00
struct-vectors struct-arrays and struct-vectors: fix unit tests 2009-07-07 19:15:50 -05:00
suffix-arrays
summary
syndication
threads threads: better error messages 2009-07-07 13:00:58 -05:00
tools factor compilation unit from tools.annotations:reset 2009-07-14 11:43:32 -05:00
tr
tuple-arrays
ui ui.tools.listener: selecting a word from a completion popup now behaves like a USE: followed by a FROM: 2009-07-18 06:55:15 -05:00
unicode More features in the unicode.breaks API, with documentation 2009-07-03 21:22:46 -05:00
unix
unrolled-lists
urls Help lint fixes for urls.encoding and mongodb.driver 2009-07-10 07:52:20 -05:00
uuid
validators
values
vectors/functor Add vectors.functor for generating vector types from arrays; re-implement bit-vectors and specialized-vectors using this. Add DEFERS directive to functors 2009-07-07 14:34:08 -05:00
vlists
vocabs vocabs.hierarchy: fix (load) word 2009-07-06 05:22:01 -05:00
windows windows.offscreen:make-bitmap-image wasn't filling in the component-type of the image object it makes 2009-06-25 09:15:04 -05:00
wrap More unit tests for wrap 2009-07-02 21:12:38 -05:00
x11
xml
xml-rpc
xmode
stuff.factor compiler.cfg.linear-scan: fix spilling 2009-07-01 22:37:27 -05:00