]> gitweb.factorcode.org Git - factor.git/commitdiff
effects: remove in-out
authorDoug Coleman <doug.coleman@gmail.com>
Mon, 20 Feb 2023 02:06:09 +0000 (20:06 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Sun, 26 Feb 2023 23:11:04 +0000 (17:11 -0600)
core/effects/effects.factor

index a79516932588d6f0821e3885b197780d8315b5de..97955390a1aa08c9bf885fd10bd46fc561c3c67a 100644 (file)
@@ -11,8 +11,6 @@ TUPLE: effect
 { in-var read-only }
 { out-var read-only } ;
 
-: in-out ( effect -- in out ) [ in>> ] [ out>> ] bi ; inline
-
 : ?terminated ( out -- out terminated? )
     dup { "*" } = [ drop { } t ] [ f ] if ;