remove long-deprecated 'mapIt'

This commit is contained in:
narimiran
2019-11-13 14:24:25 +01:00
parent 0496a666e2
commit 8394c00300

View File

@@ -872,13 +872,6 @@ template mapIt*(s: typed, op: untyped): untyped =
result.add(op)
result
template mapIt*(s, typ, op: untyped): untyped {.error:
"Deprecated since v0.12; Use 'mapIt(seq1, op)' - without specifying the type of the returned sequence".} =
var result: seq[typ] = @[]
for it {.inject.} in items(s):
result.add(op)
result
template applyIt*(varSeq, op: untyped) =
## Convenience template around the mutable ``apply`` proc to reduce typing.
##