From f60513c053d01b9c85c90805179d7a2c9dc32af0 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Mon, 6 Aug 2012 15:08:16 -0700 Subject: [PATCH] splitting: making split inline. --- core/splitting/splitting.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/splitting/splitting.factor b/core/splitting/splitting.factor index 2e6faa92d0..0398cb66d6 100644 --- a/core/splitting/splitting.factor +++ b/core/splitting/splitting.factor @@ -68,7 +68,7 @@ PRIVATE> PRIVATE> : split ( seq separators -- pieces ) - [ [ member? ] curry split, ] { } make ; + [ [ member? ] curry split, ] { } make ; inline : split-when ( ... seq quot: ( ... elt -- ... ? ) -- ... pieces ) [ split, ] { } make ; inline @@ -86,7 +86,7 @@ PRIVATE> PRIVATE> : split* ( seq separators -- pieces ) - [ [ member? ] curry split*, ] { } make ; + [ [ member? ] curry split*, ] { } make ; inline : split*-when ( ... seq quot: ( ... elt -- ... ? ) -- ... pieces ) [ split*, ] { } make ; inline