mirror of
https://github.com/idris-lang/Idris2.git
synced 2025-01-01 16:12:26 +03:00
Make fastAppend a deprecated alias of fastConcat.
This commit is contained in:
parent
362d2204ab
commit
969a6e1a45
@ -21,7 +21,13 @@ foldl1 f (x::xs) = foldl f x xs
|
|||||||
%foreign
|
%foreign
|
||||||
"scheme:string-concat"
|
"scheme:string-concat"
|
||||||
export
|
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 : List String -> String
|
||||||
|
fastAppend = fastConcat
|
||||||
|
|
||||||
||| Splits a character list into a list of whitespace separated character lists.
|
||| Splits a character list into a list of whitespace separated character lists.
|
||||||
|||
|
|||
|
||||||
|
Loading…
Reference in New Issue
Block a user