This commit is contained in:
Miran
2019-01-24 12:22:59 +01:00
committed by Andreas Rumpf
parent d72921ecf6
commit e75049d7b6

View File

@@ -846,6 +846,15 @@ template mapIt*(s: typed, op: untyped): untyped =
result.add(op)
result
template mapIt*(s, typ, op: untyped): untyped {.error:
"Use 'mapIt(seq1, op)' - without specifying the type of the returned seqence".} =
## **Deprecated since version 0.12.0:** Use the `mapIt(seq1, op) template
## <#mapIt.t,typed,untyped>`_ instead.
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.
##