我希望下面的代码能够打印chr7
。
import strutils
var splitLine = "chr7 127471196 127472363 Pos1 0 +".split()
var chrom, startPos, endPos = splitLine[0..2]
echo chrom
而是打印@[chr7, 127471196, 127472363]
。
有没有办法同时从序列中解包多个值?
如果元素不连续,最简洁的方法是什么呢?例如:
var chrom, startPos, strand = splitLine[0..1, 5]
给出错误:
read_bed.nim(8, 40) Error: type mismatch: got (seq[string], Slice[system.int], int literal(5))
but expected one of:
system.[](a: array[Idx, T], x: Slice[system.int])
system.[](s: string, x: Slice[system.int])
system.[](a: array[Idx, T], x: Slice[[].Idx])
system.[](s: seq[T], x: Slice[system.int])
var chrom, startPos, strand = splitLine[0..1, 5]
^
答案 0 :(得分:3)
这可以使用宏来完成。
import macros
macro `..=`*(lhs: untyped, rhs: tuple|seq|array): auto =
# Check that the lhs is a tuple of identifiers.
expectKind(lhs, nnkPar)
for i in 0..len(lhs)-1:
expectKind(lhs[i], nnkIdent)
# Result is a statement list starting with an
# assignment to a tmp variable of rhs.
let t = genSym()
result = newStmtList(quote do:
let `t` = `rhs`)
# assign each component to the corresponding
# variable.
for i in 0..len(lhs)-1:
let v = lhs[i]
# skip assignments to _.
if $v.toStrLit != "_":
result.add(quote do:
`v` = `t`[`i`])
macro headAux(count: int, rhs: seq|array|tuple): auto =
let t = genSym()
result = quote do:
let `t` = `rhs`
()
for i in 0..count.intVal-1:
result[1].add(quote do:
`t`[`i`])
template head*(count: static[int], rhs: untyped): auto =
# We need to redirect this through a template because
# of a bug in the current Nim compiler when using
# static[int] with macros.
headAux(count, rhs)
var x, y: int
(x, y) ..= (1, 2)
echo x, y
(x, _) ..= (3, 4)
echo x, y
(x, y) ..= @[4, 5, 6]
echo x, y
let z = head(2, @[4, 5, 6])
echo z
(x, y) ..= head(2, @[7, 8, 9])
echo x, y
..=
宏解包元组或序列分配。例如,您可以使用var (x, y) = (1, 2)
完成相同的操作,但..=
也适用于seqs和数组,并允许您重用变量。
head
模板/宏从元组,数组或seqs中提取第一个count
元素,并将它们作为元组返回(然后可以像任何其他元组一样使用,例如用于解构let
或var
)。
答案 1 :(得分:2)
目前,Nim中的模式匹配仅适用于tuples
。这也是有道理的,因为模式匹配需要静态已知的arity。例如,如果seq
的长度不是3,那么在您的示例中会发生什么?请注意,在您的示例中,序列的长度只能在运行时确定,因此编译器不知道是否实际上可以提取三个变量。
因此,我认为由{def-链接的the solution正朝着正确的方向发展。此示例使用数组, do 具有静态已知大小。在这种情况下,编译器知道元组元素,即提取定义良好。
如果您想要一种替代方案(可能方便但不安全),您可以采取以下措施:
import macros
macro extract(args: varargs[untyped]): typed =
## assumes that the first expression is an expression
## which can take a bracket expression. Let's call it
## `arr`. The generated AST will then correspond to:
##
## let <second_arg> = arr[0]
## let <third_arg> = arr[1]
## ...
result = newStmtList()
# the first vararg is the "array"
let arr = args[0]
var i = 0
# all other varargs are now used as "injected" let bindings
for arg in args.children:
if i > 0:
var rhs = newNimNode(nnkBracketExpr)
rhs.add(arr)
rhs.add(newIntLitNode(i-1))
let assign = newLetStmt(arg, rhs) # could be replaced by newVarStmt
result.add(assign)
i += 1
#echo result.treerepr
let s = @["X", "Y", "Z"]
s.extract(a, b, c)
# this essentially produces:
# let a = s[0]
# let b = s[1]
# let c = s[2]
# check if it works:
echo a, b, c
我还没有包含seq
长度的检查,所以如果seq没有所需的长度,你只会出现越界错误。另一个警告:如果第一个表达式不是文字,则表达式将被多次计算/计算。
请注意,let绑定中允许使用_
字面值作为占位符,这意味着您可以执行以下操作:
s.extract(a, b, _, _, _, x)
这将解决您的splitLine[0..1, 5]
示例,其中btw根本不是有效的索引语法。
答案 2 :(得分:2)
对于正在寻求快速解决方案的任何人,这是我写的一个名为unpack的敏捷软件包。
您可以使用以下语法对序列和对象进行解构/拆包:
someSeqOrTupleOrArray.lunpack(a, b, c)
[a2, b2, c2] <- someSeqOrTupleOrArray
{name, job} <- tim
tom.lunpack(job, otherName = name)
{job, name: yetAnotherName} <- john
答案 3 :(得分:1)
另一个选择是package definesugar
:
import strutils, definesugar
# need to use splitWhitespace instead of split to prevent empty string elements in sequence
var splitLine = "chr7 127471196 127472363 Pos1 0 +".splitWhitespace()
echo splitLine
block:
(chrom, startPos, endPos) := splitLine[0..2]
echo chrom # chr7
echo startPos # 127471196
echo endPos # 127472363
block:
(chrom, startPos, strand) := splitLine[0..1] & splitLine[5] # splitLine[0..1, 5] not supported
echo chrom
echo startPos
echo strand # +
# alternative syntax
block:
(chrom, startPos, *_, strand) := splitLine
echo chrom
echo startPos
echo strand
有关最新讨论,请参见https://forum.nim-lang.org/t/7072