]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/combinators/smart/smart.factor
stack-checker: add inputs and outputs words, since 'infer (in>>|out>>) length' was...
[factor.git] / basis / combinators / smart / smart.factor
index e423bf84f8682291f3ae2fc883333fdfdfbb81e7..cb1b309c86ebccc34cbc9bb0ef0ab9b6e75a9b52 100644 (file)
@@ -4,14 +4,6 @@ USING: accessors fry generalizations kernel macros math.order
 stack-checker math sequences ;
 IN: combinators.smart
 
-<PRIVATE
-
-: inputs ( quot -- n ) infer in>> length ;
-
-: outputs ( quot -- n ) infer out>> length ;
-
-PRIVATE>
-
 MACRO: drop-outputs ( quot -- quot' )
     dup outputs '[ @ _ ndrop ] ;