Make fastAppend a deprecated alias of fastConcat.

This commit is contained in:
Matus Tejiscak 2020-08-24 19:51:07 +02:00
parent 362d2204ab
commit 969a6e1a45

View File

@ -21,7 +21,13 @@ foldl1 f (x::xs) = foldl f x xs
%foreign
"scheme:string-concat"
export
fastConcat : List String -> String
-- This is a deprecated alias for fastConcat for backwards compatibility
-- (unfortunately, we don't have %deprecated yet).
export
fastAppend : List String -> String
fastAppend = fastConcat
||| Splits a character list into a list of whitespace separated character lists.
|||