Vle-remove-first

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(vle-remove-first item lst)


機能
リスト 'lst' から最初の 'item' を削除したリストを返す


引数
  • item : 削除するオブジェクト
  • lst : リスト


戻り値
最初の item が削除されたリスト。


サンプル

<syntaxhighlight lang="lisp" line> (vle-remove-first 123 '(1 2 123 4 5 123 6 7 8)) (1 2 4 5 123 6 7 8)

(vle-remove-first 1 '(1)) nil

</syntaxhighlight>



関連事項