From 64106c4d3d4ddba8c7bc2af75376e6d3d3d75601 Mon Sep 17 00:00:00 2001
From:
Date: Mon, 29 Jun 2015 20:16:15 +0000
Subject: Update documentation
---
src/regex/input.rs.html | 325 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 325 insertions(+)
create mode 100644 src/regex/input.rs.html
(limited to 'src/regex/input.rs.html')
diff --git a/src/regex/input.rs.html b/src/regex/input.rs.html
new file mode 100644
index 0000000..dfe5571
--- /dev/null
+++ b/src/regex/input.rs.html
@@ -0,0 +1,325 @@
+
+
+
+ 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+ 10
+ 11
+ 12
+ 13
+ 14
+ 15
+ 16
+ 17
+ 18
+ 19
+ 20
+ 21
+ 22
+ 23
+ 24
+ 25
+ 26
+ 27
+ 28
+ 29
+ 30
+ 31
+ 32
+ 33
+ 34
+ 35
+ 36
+ 37
+ 38
+ 39
+ 40
+ 41
+ 42
+ 43
+ 44
+ 45
+ 46
+ 47
+ 48
+ 49
+ 50
+ 51
+ 52
+ 53
+ 54
+ 55
+ 56
+ 57
+ 58
+ 59
+ 60
+ 61
+ 62
+ 63
+ 64
+ 65
+ 66
+ 67
+ 68
+ 69
+ 70
+ 71
+ 72
+ 73
+ 74
+ 75
+ 76
+ 77
+ 78
+ 79
+ 80
+ 81
+ 82
+ 83
+ 84
+ 85
+ 86
+ 87
+ 88
+ 89
+ 90
+ 91
+ 92
+ 93
+ 94
+ 95
+ 96
+ 97
+ 98
+ 99
+100
+101
+102
+103
+104
+105
+106
+107
+108
+109
+110
+111
+112
+113
+114
+
+
+
+
+
+
+
+
+
+
+
+use std::ops;
+
+use char::Char;
+use prefix::Prefix;
+
+
+#[derive(Clone, Copy, Debug)]
+pub struct InputAt {
+ pos: usize,
+ c: Char,
+ len: usize,
+}
+
+impl InputAt {
+
+ pub fn is_beginning(&self) -> bool {
+ self.pos == 0
+ }
+
+
+
+
+
+ pub fn char(&self) -> Char {
+ self.c
+ }
+
+
+ pub fn len(&self) -> usize {
+ self.len
+ }
+
+
+ pub fn pos(&self) -> usize {
+ self.pos
+ }
+
+
+ pub fn next_pos(&self) -> usize {
+ self.pos + self.len
+ }
+}
+
+
+pub trait Input {
+
+ fn at(&self, i: usize) -> InputAt;
+
+ fn previous_at(&self, i: usize) -> InputAt;
+
+ fn prefix_at(&self, prefixes: &Prefix, at: InputAt) -> Option<InputAt>;
+}
+
+
+
+
+#[derive(Debug)]
+pub struct CharInput<'t>(&'t str);
+
+impl<'t> CharInput<'t> {
+
+ pub fn new(s: &'t str) -> CharInput<'t> {
+ CharInput(s)
+ }
+}
+
+impl<'t> ops::Deref for CharInput<'t> {
+ type Target = str;
+
+ fn deref(&self) -> &str {
+ self.0
+ }
+}
+
+impl<'t> Input for CharInput<'t> {
+
+
+
+
+
+ #[inline(always)]
+ fn at(&self, i: usize) -> InputAt {
+ let c = self[i..].chars().next().into();
+ InputAt {
+ pos: i,
+ c: c,
+ len: c.len_utf8(),
+ }
+ }
+
+ fn previous_at(&self, i: usize) -> InputAt {
+ let c: Char = self[..i].chars().rev().next().into();
+ let len = c.len_utf8();
+ InputAt {
+ pos: i - len,
+ c: c,
+ len: len,
+ }
+ }
+
+ fn prefix_at(&self, prefixes: &Prefix, at: InputAt) -> Option<InputAt> {
+ prefixes.find(&self[at.pos()..]).map(|(s, _)| self.at(at.pos() + s))
+ }
+}
+
+
+