]> gitweb.factorcode.org Git - factor.git/commitdiff
bson.writer: make more words private.
authorJohn Benediktsson <mrjbq7@gmail.com>
Tue, 23 Jan 2018 00:30:03 +0000 (16:30 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Tue, 23 Jan 2018 00:30:03 +0000 (16:30 -0800)
extra/bson/writer/writer.factor

index 086574018fce353892ffa3e7d022c61093a60daf..3d5bfeda94519e17ac4db393e8833fa9ebf63f53 100644 (file)
@@ -13,8 +13,6 @@ IN: bson.writer
 CONSTANT: INT32-SIZE 4
 CONSTANT: INT64-SIZE 8
 
-PRIVATE>
-
 TYPED: get-output ( -- stream: byte-vector )
     output-stream get ; inline
 
@@ -32,8 +30,6 @@ TYPED: with-length ( quot -- bytes-written: integer start-index: integer )
 : with-length-prefix-excl ( quot: ( .. -- .. ) -- )
     [ 4 - ] (with-length-prefix) ; inline
 
-<PRIVATE
-
 : write-le ( x n -- )
     <iota> [ nth-byte write1 ] with each ; inline