mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-29 14:44:03 +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
|
||||
"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.
|
||||
|||
|
||||
|
Loading…
Reference in New Issue
Block a user