diff options
author | 2015-06-29 20:16:15 +0000 | |
---|---|---|
committer | 2015-06-29 20:16:15 +0000 | |
commit | 64106c4d3d4ddba8c7bc2af75376e6d3d3d75601 (patch) | |
tree | 8c64d6e8be006486d975a651505fbbde61365cd6 /regex/re | |
download | irsc-gh-pages.tar.gz irsc-gh-pages.tar.xz irsc-gh-pages.zip |
Update documentationgh-pages
Diffstat (limited to 'regex/re')
-rw-r--r-- | regex/re/enum.Error.html | 10 | ||||
-rw-r--r-- | regex/re/enum.Regex.html | 10 | ||||
-rw-r--r-- | regex/re/fn.is_match.html | 10 | ||||
-rw-r--r-- | regex/re/fn.quote.html | 10 | ||||
-rw-r--r-- | regex/re/index.html | 0 | ||||
-rw-r--r-- | regex/re/sidebar-items.js | 1 | ||||
-rw-r--r-- | regex/re/struct.Captures.html | 10 | ||||
-rw-r--r-- | regex/re/struct.FindCaptures.html | 10 | ||||
-rw-r--r-- | regex/re/struct.FindMatches.html | 10 | ||||
-rw-r--r-- | regex/re/struct.NoExpand.html | 10 | ||||
-rw-r--r-- | regex/re/struct.RegexSplits.html | 10 | ||||
-rw-r--r-- | regex/re/struct.RegexSplitsN.html | 10 | ||||
-rw-r--r-- | regex/re/struct.SubCaptures.html | 10 | ||||
-rw-r--r-- | regex/re/struct.SubCapturesNamed.html | 10 | ||||
-rw-r--r-- | regex/re/struct.SubCapturesPos.html | 10 | ||||
-rw-r--r-- | regex/re/trait.Replacer.html | 10 |
16 files changed, 141 insertions, 0 deletions
diff --git a/regex/re/enum.Error.html b/regex/re/enum.Error.html new file mode 100644 index 0000000..d5bba07 --- /dev/null +++ b/regex/re/enum.Error.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="refresh" content="0;URL=../../regex/enum.Error.html"> +</head> +<body> + <p>Redirecting to <a href="../../regex/enum.Error.html">../../regex/enum.Error.html</a>...</p> + <script>location.replace("../../regex/enum.Error.html" + location.search + location.hash);</script> +</body> +</html>
\ No newline at end of file diff --git a/regex/re/enum.Regex.html b/regex/re/enum.Regex.html new file mode 100644 index 0000000..8d0d473 --- /dev/null +++ b/regex/re/enum.Regex.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="refresh" content="0;URL=../../regex/enum.Regex.html"> +</head> +<body> + <p>Redirecting to <a href="../../regex/enum.Regex.html">../../regex/enum.Regex.html</a>...</p> + <script>location.replace("../../regex/enum.Regex.html" + location.search + location.hash);</script> +</body> +</html>
\ No newline at end of file diff --git a/regex/re/fn.is_match.html b/regex/re/fn.is_match.html new file mode 100644 index 0000000..08e601b --- /dev/null +++ b/regex/re/fn.is_match.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="refresh" content="0;URL=../../regex/fn.is_match.html"> +</head> +<body> + <p>Redirecting to <a href="../../regex/fn.is_match.html">../../regex/fn.is_match.html</a>...</p> + <script>location.replace("../../regex/fn.is_match.html" + location.search + location.hash);</script> +</body> +</html>
\ No newline at end of file diff --git a/regex/re/fn.quote.html b/regex/re/fn.quote.html new file mode 100644 index 0000000..638c97a --- /dev/null +++ b/regex/re/fn.quote.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="refresh" content="0;URL=../../regex/fn.quote.html"> +</head> +<body> + <p>Redirecting to <a href="../../regex/fn.quote.html">../../regex/fn.quote.html</a>...</p> + <script>location.replace("../../regex/fn.quote.html" + location.search + location.hash);</script> +</body> +</html>
\ No newline at end of file diff --git a/regex/re/index.html b/regex/re/index.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/regex/re/index.html diff --git a/regex/re/sidebar-items.js b/regex/re/sidebar-items.js new file mode 100644 index 0000000..b485ce7 --- /dev/null +++ b/regex/re/sidebar-items.js @@ -0,0 +1 @@ +initSidebarItems({"enum":[["Error","An error that occurred during parsing or compiling a regular expression."],["Regex","A compiled regular expression"]],"fn":[["is_match","Tests if the given regular expression matches somewhere in the text given."],["quote","Escapes all regular expression meta characters in `text`."]],"struct":[["Captures","Captures represents a group of captured strings for a single match."],["FindCaptures","An iterator that yields all non-overlapping capture groups matching a particular regular expression."],["FindMatches","An iterator over all non-overlapping matches for a particular string."],["NoExpand","NoExpand indicates literal string replacement."],["RegexSplits","Yields all substrings delimited by a regular expression match."],["RegexSplitsN","Yields at most `N` substrings delimited by a regular expression match."],["SubCaptures","An iterator over capture groups for a particular match of a regular expression."],["SubCapturesNamed","An Iterator over named capture groups as a tuple with the group name and the value."],["SubCapturesPos","An iterator over capture group positions for a particular match of a regular expression."]],"trait":[["Replacer","Replacer describes types that can be used to replace matches in a string."]]});
\ No newline at end of file diff --git a/regex/re/struct.Captures.html b/regex/re/struct.Captures.html new file mode 100644 index 0000000..9f065dc --- /dev/null +++ b/regex/re/struct.Captures.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="refresh" content="0;URL=../../regex/struct.Captures.html"> +</head> +<body> + <p>Redirecting to <a href="../../regex/struct.Captures.html">../../regex/struct.Captures.html</a>...</p> + <script>location.replace("../../regex/struct.Captures.html" + location.search + location.hash);</script> +</body> +</html>
\ No newline at end of file diff --git a/regex/re/struct.FindCaptures.html b/regex/re/struct.FindCaptures.html new file mode 100644 index 0000000..a223ce7 --- /dev/null +++ b/regex/re/struct.FindCaptures.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="refresh" content="0;URL=../../regex/struct.FindCaptures.html"> +</head> +<body> + <p>Redirecting to <a href="../../regex/struct.FindCaptures.html">../../regex/struct.FindCaptures.html</a>...</p> + <script>location.replace("../../regex/struct.FindCaptures.html" + location.search + location.hash);</script> +</body> +</html>
\ No newline at end of file diff --git a/regex/re/struct.FindMatches.html b/regex/re/struct.FindMatches.html new file mode 100644 index 0000000..833c1bb --- /dev/null +++ b/regex/re/struct.FindMatches.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="refresh" content="0;URL=../../regex/struct.FindMatches.html"> +</head> +<body> + <p>Redirecting to <a href="../../regex/struct.FindMatches.html">../../regex/struct.FindMatches.html</a>...</p> + <script>location.replace("../../regex/struct.FindMatches.html" + location.search + location.hash);</script> +</body> +</html>
\ No newline at end of file diff --git a/regex/re/struct.NoExpand.html b/regex/re/struct.NoExpand.html new file mode 100644 index 0000000..d72348f --- /dev/null +++ b/regex/re/struct.NoExpand.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="refresh" content="0;URL=../../regex/struct.NoExpand.html"> +</head> +<body> + <p>Redirecting to <a href="../../regex/struct.NoExpand.html">../../regex/struct.NoExpand.html</a>...</p> + <script>location.replace("../../regex/struct.NoExpand.html" + location.search + location.hash);</script> +</body> +</html>
\ No newline at end of file diff --git a/regex/re/struct.RegexSplits.html b/regex/re/struct.RegexSplits.html new file mode 100644 index 0000000..a1aa0ae --- /dev/null +++ b/regex/re/struct.RegexSplits.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="refresh" content="0;URL=../../regex/struct.RegexSplits.html"> +</head> +<body> + <p>Redirecting to <a href="../../regex/struct.RegexSplits.html">../../regex/struct.RegexSplits.html</a>...</p> + <script>location.replace("../../regex/struct.RegexSplits.html" + location.search + location.hash);</script> +</body> +</html>
\ No newline at end of file diff --git a/regex/re/struct.RegexSplitsN.html b/regex/re/struct.RegexSplitsN.html new file mode 100644 index 0000000..7ebc144 --- /dev/null +++ b/regex/re/struct.RegexSplitsN.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="refresh" content="0;URL=../../regex/struct.RegexSplitsN.html"> +</head> +<body> + <p>Redirecting to <a href="../../regex/struct.RegexSplitsN.html">../../regex/struct.RegexSplitsN.html</a>...</p> + <script>location.replace("../../regex/struct.RegexSplitsN.html" + location.search + location.hash);</script> +</body> +</html>
\ No newline at end of file diff --git a/regex/re/struct.SubCaptures.html b/regex/re/struct.SubCaptures.html new file mode 100644 index 0000000..36d2394 --- /dev/null +++ b/regex/re/struct.SubCaptures.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="refresh" content="0;URL=../../regex/struct.SubCaptures.html"> +</head> +<body> + <p>Redirecting to <a href="../../regex/struct.SubCaptures.html">../../regex/struct.SubCaptures.html</a>...</p> + <script>location.replace("../../regex/struct.SubCaptures.html" + location.search + location.hash);</script> +</body> +</html>
\ No newline at end of file diff --git a/regex/re/struct.SubCapturesNamed.html b/regex/re/struct.SubCapturesNamed.html new file mode 100644 index 0000000..07205e6 --- /dev/null +++ b/regex/re/struct.SubCapturesNamed.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="refresh" content="0;URL=../../regex/struct.SubCapturesNamed.html"> +</head> +<body> + <p>Redirecting to <a href="../../regex/struct.SubCapturesNamed.html">../../regex/struct.SubCapturesNamed.html</a>...</p> + <script>location.replace("../../regex/struct.SubCapturesNamed.html" + location.search + location.hash);</script> +</body> +</html>
\ No newline at end of file diff --git a/regex/re/struct.SubCapturesPos.html b/regex/re/struct.SubCapturesPos.html new file mode 100644 index 0000000..05dc859 --- /dev/null +++ b/regex/re/struct.SubCapturesPos.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="refresh" content="0;URL=../../regex/struct.SubCapturesPos.html"> +</head> +<body> + <p>Redirecting to <a href="../../regex/struct.SubCapturesPos.html">../../regex/struct.SubCapturesPos.html</a>...</p> + <script>location.replace("../../regex/struct.SubCapturesPos.html" + location.search + location.hash);</script> +</body> +</html>
\ No newline at end of file diff --git a/regex/re/trait.Replacer.html b/regex/re/trait.Replacer.html new file mode 100644 index 0000000..80e186a --- /dev/null +++ b/regex/re/trait.Replacer.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta http-equiv="refresh" content="0;URL=../../regex/trait.Replacer.html"> +</head> +<body> + <p>Redirecting to <a href="../../regex/trait.Replacer.html">../../regex/trait.Replacer.html</a>...</p> + <script>location.replace("../../regex/trait.Replacer.html" + location.search + location.hash);</script> +</body> +</html>
\ No newline at end of file |