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.
私はclojureでシーケンスを処理しています。述語関数が true になるまで要素を取得したいと考えています。それ、どうやったら出来るの?
take-whileと一緒に使用できますnot
take-while
not
user=> (take-while (comp not even?) [3 9 2 4 6 10 1 2]) (3 9)