SYMBOL INDEX (78 symbols across 4 files) FILE: example_test.go function ExampleVerbalExpression_Find (line 8) | func ExampleVerbalExpression_Find() { function ExampleVerbalExpression_Captures (line 15) | func ExampleVerbalExpression_Captures() { function ExampleVerbalExpression_Range (line 42) | func ExampleVerbalExpression_Range() { function ExampleVerbalExpression_Any (line 51) | func ExampleVerbalExpression_Any() { function ExampleVerbalExpression_Or (line 59) | func ExampleVerbalExpression_Or() { function ExampleVerbalExpression_Replace (line 70) | func ExampleVerbalExpression_Replace() { function ExampleVerbalExpression_AnythingBut (line 78) | func ExampleVerbalExpression_AnythingBut() { FILE: helpers.go method Test (line 6) | func (v *VerbalExpression) Test(s string) bool { method Replace (line 12) | func (v *VerbalExpression) Replace(src string, dst string) string { method Captures (line 18) | func (v *VerbalExpression) Captures(s string) [][]string { FILE: verbalexpressions.go type Flag (line 14) | type Flag constant MULTILINE (line 17) | MULTILINE Flag = 1 << iota constant IGNORE_CASE (line 18) | IGNORE_CASE constant DOTALL (line 19) | DOTALL constant UNGREEDY (line 20) | UNGREEDY constant GLOBAL (line 21) | GLOBAL type VerbalExpression (line 25) | type VerbalExpression struct method addmodifier (line 73) | func (v *VerbalExpression) addmodifier(f Flag) *VerbalExpression { method removemodifier (line 80) | func (v *VerbalExpression) removemodifier(f Flag) *VerbalExpression { method getFlags (line 87) | func (v *VerbalExpression) getFlags() string { method add (line 101) | func (v *VerbalExpression) add(s string) *VerbalExpression { method BeginCapture (line 108) | func (v *VerbalExpression) BeginCapture() *VerbalExpression { method EndCapture (line 114) | func (v *VerbalExpression) EndCapture() *VerbalExpression { method Anything (line 120) | func (v *VerbalExpression) Anything() *VerbalExpression { method AnythingBut (line 125) | func (v *VerbalExpression) AnythingBut(s string) *VerbalExpression { method Something (line 130) | func (v *VerbalExpression) Something() *VerbalExpression { method SomethingBut (line 135) | func (v *VerbalExpression) SomethingBut(s string) *VerbalExpression { method EndOfLine (line 141) | func (v *VerbalExpression) EndOfLine() *VerbalExpression { method Maybe (line 149) | func (v *VerbalExpression) Maybe(s string) *VerbalExpression { method StartOfLine (line 155) | func (v *VerbalExpression) StartOfLine() *VerbalExpression { method Find (line 163) | func (v *VerbalExpression) Find(s string) *VerbalExpression { method Not (line 174) | func (v *VerbalExpression) Not(value string) *VerbalExpression { method Then (line 193) | func (v *VerbalExpression) Then(s string) *VerbalExpression { method Any (line 198) | func (v *VerbalExpression) Any(s string) *VerbalExpression { method AnyOf (line 203) | func (v *VerbalExpression) AnyOf(s string) *VerbalExpression { method LineBreak (line 208) | func (v *VerbalExpression) LineBreak() *VerbalExpression { method Br (line 213) | func (v *VerbalExpression) Br() *VerbalExpression { method Range (line 219) | func (v *VerbalExpression) Range(args ...interface{}) *VerbalExpression { method Tab (line 239) | func (v *VerbalExpression) Tab() *VerbalExpression { method Word (line 244) | func (v *VerbalExpression) Word() *VerbalExpression { method Multiple (line 275) | func (v *VerbalExpression) Multiple(s string, mults ...int) *VerbalExp... method Or (line 325) | func (v *VerbalExpression) Or(ve *VerbalExpression) *VerbalExpression { method And (line 332) | func (v *VerbalExpression) And(ve *VerbalExpression) *VerbalExpression { method WithAnyCase (line 337) | func (v *VerbalExpression) WithAnyCase(sensitive bool) *VerbalExpressi... method SearchOneLine (line 346) | func (v *VerbalExpression) SearchOneLine(oneline bool) *VerbalExpressi... method MatchAllWithDot (line 354) | func (v *VerbalExpression) MatchAllWithDot(enable bool) *VerbalExpress... method Regex (line 362) | func (v *VerbalExpression) Regex() *regexp.Regexp { method StopAtFirst (line 377) | func (v *VerbalExpression) StopAtFirst(enable bool) *VerbalExpression { function quote (line 36) | func quote(s string) string { function tostring (line 41) | func tostring(i interface{}) string { function New (line 65) | func New() *VerbalExpression { FILE: verbalexpressions_test.go function assertStringEquals (line 9) | func assertStringEquals(s1, s2 string, t *testing.T) { function TestChaining (line 15) | func TestChaining(t *testing.T) { function TestRange (line 33) | func TestRange(t *testing.T) { function TestPanicOnRangeOddParams (line 51) | func TestPanicOnRangeOddParams(t *testing.T) { function TestOneLine (line 63) | func TestOneLine(t *testing.T) { function TestAnythingBut (line 87) | func TestAnythingBut(t *testing.T) { function TestAny (line 101) | func TestAny(t *testing.T) { function TestReplace (line 118) | func TestReplace(t *testing.T) { function TestCaptures (line 132) | func TestCaptures(t *testing.T) { function TestSeveralCaptures (line 162) | func TestSeveralCaptures(t *testing.T) { function TestCaptureSeveralTimes (line 193) | func TestCaptureSeveralTimes(t *testing.T) { function TestCapturingSeveralGroups (line 219) | func TestCapturingSeveralGroups(t *testing.T) { function TestORMethod (line 259) | func TestORMethod(t *testing.T) { function TestMultipleMethod (line 283) | func TestMultipleMethod(t *testing.T) { function TestPanicMultipleMethod (line 312) | func TestPanicMultipleMethod(t *testing.T) { function TestSomethingMethods (line 321) | func TestSomethingMethods(t *testing.T) { function TestAllWithDot (line 340) | func TestAllWithDot(t *testing.T) { function TestWithAnyCase (line 360) | func TestWithAnyCase(t *testing.T) { function TestModifiers (line 370) | func TestModifiers(t *testing.T) { function TestGlobalModifier (line 396) | func TestGlobalModifier(t *testing.T) { function TestStartEndWithOR (line 422) | func TestStartEndWithOR(t *testing.T) { function TestLineBreak (line 464) | func TestLineBreak(t *testing.T) { function TestTABMethod (line 481) | func TestTABMethod(t *testing.T) { function TestToString (line 490) | func TestToString(t *testing.T) { function TestToStringMustPanic (line 509) | func TestToStringMustPanic(t *testing.T) { function TestNotMethod (line 522) | func TestNotMethod(t *testing.T) { function TestAndOrCumulate (line 562) | func TestAndOrCumulate(t *testing.T) {