diff options
author | Tom Faulhaber <git_net@infolace.com> | 2009-08-19 11:10:57 -0700 |
---|---|---|
committer | Tom Faulhaber <git_net@infolace.com> | 2009-08-19 11:10:57 -0700 |
commit | 54329e6e36bffdc9008f96fa26bed45d10ca8f87 (patch) | |
tree | bdaf6e0995af12e661e7aca7a3c65221a3b737b1 | |
parent | e753c114fd555d601d6da62847826090d4403542 (diff) |
Updated documentation for commit aae84a8b7e47622a4ca324a2828757996b592ea4
-rw-r--r-- | api-index.html | 2 | ||||
-rw-r--r-- | api-index.json | 72 | ||||
-rw-r--r-- | index.html | 2 | ||||
-rw-r--r-- | str-utils2-api.html | 76 |
4 files changed, 96 insertions, 56 deletions
diff --git a/api-index.html b/api-index.html index c623794f..86ee146d 100644 --- a/api-index.html +++ b/api-index.html @@ -561,6 +561,7 @@ Shortcuts:<br /> </span></span><span id="section-content"> <a href="java-utils-api.html#relative-path-string">relative-path-string</a><span id="line-content"> multimethod java-utils Interpret a String or java.io.File as a relative p... </span></span><span id="section-content"> <a href="dataflow-api.html#remove-cells">remove-cells</a><span id="line-content"> function dataflow Given a collection of cells, remove them from the ... </span></span><span id="section-content"> <a href="graph-api.html#remove-loops">remove-loops</a><span id="line-content"> function graph For each node n, remove any edges n->n.. +</span></span><span id="section-content"> <a href="str-utils2-api.html#repeat">repeat</a><span id="line-content"> function str-utils2 Returns a new String containing s repeated n times... </span></span><span id="section-content"> <a href="repl-ln-api.html#repl">repl</a><span id="line-content"> function repl-ln A repl that supports line numbers. For definitions... </span></span><span id="section-content"> <a href="repl-ln-api.html#repl-info">repl-info</a><span id="line-content"> function repl-ln Returns a map of info about the current repl. </span></span><span id="section-content"> <a href="repl-ln-api.html#repl-prompt">repl-prompt</a><span id="line-content"> function repl-ln Returns the current repl prompt based on this repl... @@ -570,6 +571,7 @@ Shortcuts:<br /> </span></span><span id="section-content"> <a href="http.agent-api.html#request-headers">request-headers</a><span id="line-content"> function http.agent Returns the request headers specified for this HTT... </span></span><span id="section-content"> <a href="http.agent-api.html#request-uri">request-uri</a><span id="line-content"> function http.agent Returns the URI/URL requested by this HTTP agent, ... </span></span><span id="section-content"> <a href="http.agent-api.html#result">result</a><span id="line-content"> function http.agent Returns the value returned by the :handler functio... +</span></span><span id="section-content"> <a href="str-utils2-api.html#reverse">reverse</a><span id="line-content"> function str-utils2 Returns s with its characters reversed.. </span></span><span id="section-content"> <a href="graph-api.html#reverse-graph">reverse-graph</a><span id="line-content"> function graph Given a directed graph, return another directed gr... </span></span><span id="section-content"> <a href="zip-filter-api.html#right-locs">right-locs</a><span id="line-content"> function zip-filter Returns a lazy sequence of locations to the right ... </span></span><span id="section-content"> <a href="zip-filter-api.html#rightmost?">rightmost?</a><span id="line-content"> function zip-filter Returns true if there are no more nodes to the rig... diff --git a/api-index.json b/api-index.json index eab65952..65bce059 100644 --- a/api-index.json +++ b/api-index.json @@ -474,7 +474,7 @@ "author":"Stuart Sierra", "doc":"String utilities for Clojure"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj", "wiki-url": "http://richhickey.github.com/clojure-contrib/str-utils2-api.html", "name":"clojure.contrib.str-utils2", @@ -4964,7 +4964,7 @@ "Returns a string of all elements in 'sequence', separated by\n'separator'. Like Perl's 'join'.", "name":"str-join"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L101", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L102", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/blank?", "namespace":"clojure.contrib.str-utils2", @@ -4972,7 +4972,7 @@ "doc":"True if s is nil, empty, or contains only whitespace.", "name":"blank?"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L126", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L127", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/butlast", "namespace":"clojure.contrib.str-utils2", @@ -4981,7 +4981,7 @@ "Returns s without the last n characters. Returns an empty string\nif n is greater than the length of s.\n\nNote the argument order is the opposite of clojure.core/butlast;\nthis is to keep the string as the first argument for use with ->", "name":"butlast"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L271", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L282", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/capitalize", "namespace":"clojure.contrib.str-utils2", @@ -4990,7 +4990,7 @@ "Converts first character of the string to upper-case, all other\ncharacters to lower-case.", "name":"capitalize"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L244", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L255", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/chomp", "namespace":"clojure.contrib.str-utils2", @@ -4999,7 +4999,7 @@ "Removes all trailing newline \\n or return \\r characters from\nstring. Note: String.trim() is similar and faster.", "name":"chomp"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L235", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L246", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/chop", "namespace":"clojure.contrib.str-utils2", @@ -5008,7 +5008,7 @@ "Removes the last character of string, does nothing on a zero-length\nstring.", "name":"chop"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L76", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L77", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/codepoints", "namespace":"clojure.contrib.str-utils2", @@ -5017,7 +5017,7 @@ "Returns a sequence of integer Unicode code points in s. Handles\nUnicode supplementary characters (above U+FFFF) correctly.", "name":"codepoints"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L337", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L348", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/contains?", "namespace":"clojure.contrib.str-utils2", @@ -5025,7 +5025,7 @@ "doc":"True if s contains the substring.", "name":"contains?"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L36", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L37", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/dochars", "namespace":"clojure.contrib.str-utils2", @@ -5034,7 +5034,7 @@ "bindings => [name string]\n\nRepeatedly executes body, with name bound to each character in\nstring. Does NOT handle Unicode supplementary characters (above\nU+FFFF).", "name":"dochars"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L52", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L53", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/docodepoints", "namespace":"clojure.contrib.str-utils2", @@ -5043,7 +5043,7 @@ "bindings => [name string]\n\nRepeatedly executes body, with name bound to the integer code point\nof each Unicode character in the string. Handles Unicode\nsupplementary characters (above U+FFFF) correctly.", "name":"docodepoints"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L89", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L90", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/escape", "namespace":"clojure.contrib.str-utils2", @@ -5052,7 +5052,7 @@ "Returns a new String by applying cmap (a function or a map) to each\ncharacter in s. If cmap returns nil, the original character is\nadded to the output unchanged.", "name":"escape"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L342", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L353", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/get", "namespace":"clojure.contrib.str-utils2", @@ -5060,7 +5060,7 @@ "doc":"Gets the i'th character in string.", "name":"get"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L303", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L314", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/grep", "namespace":"clojure.contrib.str-utils2", @@ -5069,7 +5069,7 @@ "Filters elements of coll by a regular expression. The String\nrepresentation (with str) of each element is tested with re-find.", "name":"grep"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L229", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L240", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/join", "namespace":"clojure.contrib.str-utils2", @@ -5078,7 +5078,7 @@ "Returns a string of all elements in coll, separated by\nseparator. Like Perl's join.", "name":"join"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L321", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L332", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/lower-case", "namespace":"clojure.contrib.str-utils2", @@ -5086,7 +5086,7 @@ "doc":"Converts string to all lower-case.", "name":"lower-case"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L280", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L291", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/ltrim", "namespace":"clojure.contrib.str-utils2", @@ -5094,7 +5094,7 @@ "doc":"Removes whitespace from the left side of string.", "name":"ltrim"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L296", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L307", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/map-str", "namespace":"clojure.contrib.str-utils2", @@ -5103,7 +5103,7 @@ "Apply f to each element of coll, concatenate all results into a\nString.", "name":"map-str"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L208", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L219", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/partition", "namespace":"clojure.contrib.str-utils2", @@ -5112,7 +5112,15 @@ "Splits the string into a lazy sequence of substrings, alternating\nbetween substrings that match the patthern and the substrings\nbetween the matches. The sequence always starts with the substring\nbefore the first match, or an empty string if the beginning of the\nstring matches.\n\nFor example: (partition \"abc123def\" #\"[a-z]+\")\nreturns: (\"\" \"abc\" \"123\" \"def\")", "name":"partition"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L144", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L145", + "wiki-url": + "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/repeat", + "namespace":"clojure.contrib.str-utils2", + "arglists":[["s", "n"]], + "doc":"Returns a new String containing s repeated n times.", + "name":"repeat"}, + {"source-url": + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L155", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/replace", "namespace":"clojure.contrib.str-utils2", @@ -5121,7 +5129,7 @@ "Replaces all instances of pattern in string with replacement. \n\nAllowed argument types for pattern and replacement are:\n 1. String and String\n 2. Character and Character\n 3. regex Pattern and String\n (Uses java.util.regex.Matcher.replaceAll)\n 4. regex Pattern and function\n (Calls function with re-groups of each match, uses return \n value as replacement.)", "name":"replace"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L179", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L190", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/replace-first", "namespace":"clojure.contrib.str-utils2", @@ -5130,7 +5138,15 @@ "Replaces the first instance of pattern in s with replacement.\n\nAllowed argument types for pattern and replacement are:\n 1. String and String\n 2. regex Pattern and String\n (Uses java.util.regex.Matcher.replaceAll)\n 3. regex Pattern and function", "name":"replace-first"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L285", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L150", + "wiki-url": + "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/reverse", + "namespace":"clojure.contrib.str-utils2", + "arglists":[["s"]], + "doc":"Returns s with its characters reversed.", + "name":"reverse"}, + {"source-url": + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L296", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/rtrim", "namespace":"clojure.contrib.str-utils2", @@ -5138,7 +5154,7 @@ "doc":"Removes whitespace from the right side of string.", "name":"rtrim"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L326", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L337", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/split", "namespace":"clojure.contrib.str-utils2", @@ -5147,7 +5163,7 @@ "Splits string on a regular expression. Optional argument limit is\nthe maximum number of splits.", "name":"split"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L290", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L301", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/split-lines", "namespace":"clojure.contrib.str-utils2", @@ -5155,7 +5171,7 @@ "doc":"Splits s on \\n or \\r\\n.", "name":"split-lines"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L253", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L264", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/swap-case", "namespace":"clojure.contrib.str-utils2", @@ -5164,7 +5180,7 @@ "Changes upper case characters to lower case and vice-versa.\nHandles Unicode supplementary characters correctly. Uses the\nlocale-sensitive String.toUpperCase() and String.toLowerCase()\nmethods.", "name":"swap-case"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L137", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L138", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/tail", "namespace":"clojure.contrib.str-utils2", @@ -5172,7 +5188,7 @@ "doc":"Returns the last n characters of s.", "name":"tail"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L106", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L107", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/take", "namespace":"clojure.contrib.str-utils2", @@ -5181,7 +5197,7 @@ "Take first n characters from s, up to the length of s.\n\nNote the argument order is the opposite of clojure.core/take; this\nis to keep the string as the first argument for use with ->", "name":"take"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L332", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L343", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/trim", "namespace":"clojure.contrib.str-utils2", @@ -5189,7 +5205,7 @@ "doc":"Removes whitespace from both ends of string.", "name":"trim"}, {"source-url": - "http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L316", + "http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L327", "wiki-url": "http://richhickey.github.com/clojure-contrib//str-utils2-api.html#str-utils2/upper-case", "namespace":"clojure.contrib.str-utils2", @@ -1777,7 +1777,7 @@ Some ideas are borrowed from <a href="http://github.com/francoisdevlin/devlinsf-clojure-utils/">http://github.com/francoisdevlin/devlinsf-clojure-utils/</a></pre> Public variables and functions: - <span id="var-link"><a href="str-utils2-api.html#str-utils2/blank?" id="var-tag">blank?</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/butlast" id="var-tag">butlast</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/capitalize" id="var-tag">capitalize</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/chomp" id="var-tag">chomp</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/chop" id="var-tag">chop</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/codepoints" id="var-tag">codepoints</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/contains?" id="var-tag">contains?</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/dochars" id="var-tag">dochars</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/docodepoints" id="var-tag">docodepoints</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/escape" id="var-tag">escape</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/get" id="var-tag">get</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/grep" id="var-tag">grep</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/join" id="var-tag">join</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/lower-case" id="var-tag">lower-case</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/ltrim" id="var-tag">ltrim</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/map-str" id="var-tag">map-str</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/partition" id="var-tag">partition</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/replace" id="var-tag">replace</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/replace-first" id="var-tag">replace-first</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/rtrim" id="var-tag">rtrim</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/split" id="var-tag">split</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/split-lines" id="var-tag">split-lines</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/swap-case" id="var-tag">swap-case</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/tail" id="var-tag">tail</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/take" id="var-tag">take</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/trim" id="var-tag">trim</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/upper-case" id="var-tag">upper-case</a> </span><br /> + <span id="var-link"><a href="str-utils2-api.html#str-utils2/blank?" id="var-tag">blank?</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/butlast" id="var-tag">butlast</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/capitalize" id="var-tag">capitalize</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/chomp" id="var-tag">chomp</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/chop" id="var-tag">chop</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/codepoints" id="var-tag">codepoints</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/contains?" id="var-tag">contains?</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/dochars" id="var-tag">dochars</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/docodepoints" id="var-tag">docodepoints</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/escape" id="var-tag">escape</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/get" id="var-tag">get</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/grep" id="var-tag">grep</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/join" id="var-tag">join</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/lower-case" id="var-tag">lower-case</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/ltrim" id="var-tag">ltrim</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/map-str" id="var-tag">map-str</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/partition" id="var-tag">partition</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/repeat" id="var-tag">repeat</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/replace" id="var-tag">replace</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/replace-first" id="var-tag">replace-first</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/reverse" id="var-tag">reverse</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/rtrim" id="var-tag">rtrim</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/split" id="var-tag">split</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/split-lines" id="var-tag">split-lines</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/swap-case" id="var-tag">swap-case</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/tail" id="var-tag">tail</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/take" id="var-tag">take</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/trim" id="var-tag">trim</a> </span><span id="var-link"><a href="str-utils2-api.html#str-utils2/upper-case" id="var-tag">upper-case</a> </span><br /> </div><div id="namespace-entry"> <br /> diff --git a/str-utils2-api.html b/str-utils2-api.html index 71535117..87adf454 100644 --- a/str-utils2-api.html +++ b/str-utils2-api.html @@ -89,10 +89,14 @@ namespace. </div><div style="margin-left: 1em;" class="toc-entry"> <a href="#str-utils2/partition">partition</a> </div><div style="margin-left: 1em;" class="toc-entry"> + <a href="#str-utils2/repeat">repeat</a> + </div><div style="margin-left: 1em;" class="toc-entry"> <a href="#str-utils2/replace">replace</a> </div><div style="margin-left: 1em;" class="toc-entry"> <a href="#str-utils2/replace-first">replace-first</a> </div><div style="margin-left: 1em;" class="toc-entry"> + <a href="#str-utils2/reverse">reverse</a> + </div><div style="margin-left: 1em;" class="toc-entry"> <a href="#str-utils2/rtrim">rtrim</a> </div><div style="margin-left: 1em;" class="toc-entry"> <a href="#str-utils2/split">split</a> @@ -146,7 +150,7 @@ Some ideas are borrowed from <pre id="var-usage">Usage: (blank? s) </pre> <pre id="var-docstr">True if s is nil, empty, or contains only whitespace.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L101" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L102" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -159,7 +163,7 @@ if n is greater than the length of s. Note the argument order is the opposite of clojure.core/butlast; this is to keep the string as the first argument for use with -></pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L126" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L127" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -169,7 +173,7 @@ this is to keep the string as the first argument for use with -></pre> </pre> <pre id="var-docstr">Converts first character of the string to upper-case, all other characters to lower-case.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L271" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L282" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -179,7 +183,7 @@ characters to lower-case.</pre> </pre> <pre id="var-docstr">Removes all trailing newline \n or return \r characters from string. Note: String.trim() is similar and faster.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L244" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L255" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -189,7 +193,7 @@ string. Note: String.trim() is similar and faster.</pre> </pre> <pre id="var-docstr">Removes the last character of string, does nothing on a zero-length string.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L235" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L246" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -199,7 +203,7 @@ string.</pre> </pre> <pre id="var-docstr">Returns a sequence of integer Unicode code points in s. Handles Unicode supplementary characters (above U+FFFF) correctly.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L76" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L77" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -208,7 +212,7 @@ Unicode supplementary characters (above U+FFFF) correctly.</pre> <pre id="var-usage">Usage: (contains? s substring) </pre> <pre id="var-docstr">True if s contains the substring.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L337" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L348" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -221,7 +225,7 @@ Unicode supplementary characters (above U+FFFF) correctly.</pre> Repeatedly executes body, with name bound to each character in string. Does NOT handle Unicode supplementary characters (above U+FFFF).</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L36" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L37" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -234,7 +238,7 @@ U+FFFF).</pre> Repeatedly executes body, with name bound to the integer code point of each Unicode character in the string. Handles Unicode supplementary characters (above U+FFFF) correctly.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L52" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L53" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -245,7 +249,7 @@ supplementary characters (above U+FFFF) correctly.</pre> <pre id="var-docstr">Returns a new String by applying cmap (a function or a map) to each character in s. If cmap returns nil, the original character is added to the output unchanged.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L89" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L90" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -254,7 +258,7 @@ added to the output unchanged.</pre> <pre id="var-usage">Usage: (get s i) </pre> <pre id="var-docstr">Gets the i'th character in string.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L342" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L353" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -264,7 +268,7 @@ added to the output unchanged.</pre> </pre> <pre id="var-docstr">Filters elements of coll by a regular expression. The String representation (with str) of each element is tested with re-find.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L303" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L314" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -274,7 +278,7 @@ representation (with str) of each element is tested with re-find.</pre> </pre> <pre id="var-docstr">Returns a string of all elements in coll, separated by separator. Like Perl's join.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L229" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L240" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -283,7 +287,7 @@ separator. Like Perl's join.</pre> <pre id="var-usage">Usage: (lower-case s) </pre> <pre id="var-docstr">Converts string to all lower-case.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L321" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L332" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -292,7 +296,7 @@ separator. Like Perl's join.</pre> <pre id="var-usage">Usage: (ltrim s) </pre> <pre id="var-docstr">Removes whitespace from the left side of string.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L280" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L291" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -302,7 +306,7 @@ separator. Like Perl's join.</pre> </pre> <pre id="var-docstr">Apply f to each element of coll, concatenate all results into a String.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L296" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L307" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -318,7 +322,16 @@ string matches. For example: (partition "abc123def" #"[a-z]+") returns: ("" "abc" "123" "def")</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L208" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L219" id="var-source">Source</a> +</div><div id="var-entry"> + <br /> + <hr /> + <h2 id="str-utils2/repeat">repeat</h2> + <span id="var-type">function</span><br /> + <pre id="var-usage">Usage: (repeat s n) +</pre> + <pre id="var-docstr">Returns a new String containing s repeated n times.</pre> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L145" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -336,7 +349,7 @@ Allowed argument types for pattern and replacement are: 4. regex Pattern and function (Calls function with re-groups of each match, uses return value as replacement.)</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L144" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L155" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -351,7 +364,16 @@ Allowed argument types for pattern and replacement are: 2. regex Pattern and String (Uses java.util.regex.Matcher.replaceAll) 3. regex Pattern and function</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L179" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L190" id="var-source">Source</a> +</div><div id="var-entry"> + <br /> + <hr /> + <h2 id="str-utils2/reverse">reverse</h2> + <span id="var-type">function</span><br /> + <pre id="var-usage">Usage: (reverse s) +</pre> + <pre id="var-docstr">Returns s with its characters reversed.</pre> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L150" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -360,7 +382,7 @@ Allowed argument types for pattern and replacement are: <pre id="var-usage">Usage: (rtrim s) </pre> <pre id="var-docstr">Removes whitespace from the right side of string.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L285" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L296" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -371,7 +393,7 @@ Allowed argument types for pattern and replacement are: </pre> <pre id="var-docstr">Splits string on a regular expression. Optional argument limit is the maximum number of splits.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L326" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L337" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -380,7 +402,7 @@ the maximum number of splits.</pre> <pre id="var-usage">Usage: (split-lines s) </pre> <pre id="var-docstr">Splits s on \n or \r\n.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L290" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L301" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -392,7 +414,7 @@ the maximum number of splits.</pre> Handles Unicode supplementary characters correctly. Uses the locale-sensitive String.toUpperCase() and String.toLowerCase() methods.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L253" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L264" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -401,7 +423,7 @@ methods.</pre> <pre id="var-usage">Usage: (tail s n) </pre> <pre id="var-docstr">Returns the last n characters of s.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L137" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L138" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -413,7 +435,7 @@ methods.</pre> Note the argument order is the opposite of clojure.core/take; this is to keep the string as the first argument for use with -></pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L106" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L107" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -422,7 +444,7 @@ is to keep the string as the first argument for use with -></pre> <pre id="var-usage">Usage: (trim s) </pre> <pre id="var-docstr">Removes whitespace from both ends of string.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L332" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L343" id="var-source">Source</a> </div><div id="var-entry"> <br /> <hr /> @@ -431,7 +453,7 @@ is to keep the string as the first argument for use with -></pre> <pre id="var-usage">Usage: (upper-case s) </pre> <pre id="var-docstr">Converts string to all upper-case.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/fda5d6a8ad310624f9efb487a2c9ed8616557ef3/src/clojure/contrib/str_utils2.clj#L316" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/aae84a8b7e47622a4ca324a2828757996b592ea4/src/clojure/contrib/str_utils2.clj#L327" id="var-source">Source</a> </div> |