Drops first n characters from s. Returns an empty string if n is
greater than the length of s.
Note the argument order is the opposite of clojure.core/drop; this
is to keep the string as the first argument for use with ->
(defn ^String drop
"Drops first n characters from s. Returns an empty string if n is
greater than the length of s.
Note the argument order is the opposite of clojure.core/drop; this
is to keep the string as the first argument for use with ->"
[^String s n]
(if (< (count s) n)
""
(.substring s n)))
Comments top
No comments for drop. Log in to add a comment.