std.string.wrap
wrap
added in 3.0
(wrap f)enables string-like ops for more types
((wrap #(str ’+ % ’+)) ’hello) => ’+hello+
wrap-fn
multimethod
added in 3.0
multimethod for extending wrap
(let f #(str ’+ % ’+) (((wrap-fn f) f) :hello)) => :+hello+
(wrap f)enables string-like ops for more types
((wrap #(str ’+ % ’+)) ’hello) => ’+hello+
multimethod for extending wrap
(let f #(str ’+ % ’+) (((wrap-fn f) f) :hello)) => :+hello+