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.
map!:があり、それを次のような#(a: 1)同等のものに変換したいobject!: [a: 1]。
map!
#(a: 1)
object!
[a: 1]
最初にマップをブロックに変換して、オブジェクト スペックを生成します。マップ キーはすべてword!s でなければなりません。
word!
>> object to-block #(a: 5) == make object! [ a: 5 ]