JanetDocsPlaygroundI'm feeling luckyGitHub sign in

drop-until



    function
    boot.janet on line 1149, column 1

    (drop-until pred ind)

    Same as `(drop-while (complement pred) ind)`.


1 exampleSign in to add an example
Loading...
(drop-until |(> $ 8)
            [1 1 2 3 4 5 8 13 21])
# => '(13 21)
sogaiuPlayground