Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
double[]タイプのプロパティを含むノードがグラフにあります。どうすればこのようなことをサイファーで行うことができますか?
for (int i=0; i < theArray.length(); i++) theArray[i] *= .8;
これは明らかに機能しませんが、一般的な考え方は次のとおりです。
start a = node(0) a.theArray = a.theArray*.8 return a;
extractのようなものに使用してmap、新しいコレクションを作成できます。
extract
map
start n=node(0) set n.foo=extract(x in [1,2,3] : x*0.8) return n set n.foo = extract(x in n.foo : x*0.8)