0
是否有可能連續重複一次跟隨模式n次?Esper鏈 - 重複一次後續模式n次?
我想實現的是這種模式:
every a=A
-> b=B(b.price < a.price)
-> c=C(c.price < b.price)
-> d=D(d.price < c.price)
-> e=E(e.price < d.price)
-> f=F(f.price < e.price)
-> g=G(g.price < f.price)
...
如果我例如下面寫的模式,而不是每個項目獲得相比以上。 (B永遠不會與C相比,D永遠不會與E相比,依此類推)。
[16] (a=A -> b=B(b.price < a.price))
有什麼建議嗎?