-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: update documentation to v0.11.3
- Loading branch information
1 parent
7cc7207
commit b40b4ac
Showing
15 changed files
with
4,944 additions
and
2,055 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
Glob glob.html#Glob glob: Glob | ||
GlobEntry glob.html#GlobEntry glob: GlobEntry | ||
PatternStems glob.html#PatternStems glob: PatternStems | ||
GlobOption glob.html#GlobOption glob: GlobOption | ||
GlobOptions glob.html#GlobOptions glob: GlobOptions | ||
FilterDescend glob.html#FilterDescend glob: FilterDescend | ||
FilterYield glob.html#FilterYield glob: FilterYield | ||
defaultGlobOptions glob.html#defaultGlobOptions glob: defaultGlobOptions | ||
hasMagic glob.html#hasMagic,string glob: hasMagic(str: string): bool | ||
globToRegex glob.html#globToRegex,string glob: globToRegex(pattern: string; isDos = isDosDefault; ignoreCase = isDosDefault): Regex | ||
splitPattern glob.html#splitPattern,string glob: splitPattern(pattern: string): PatternStems | ||
glob glob.html#glob,string glob: glob(pattern: string; isDos = isDosDefault; ignoreCase = isDosDefault): Glob | ||
matches glob.html#matches,string,Glob glob: matches(input: string; glob: Glob): bool | ||
matches glob.html#matches,string,string glob: matches(input, pattern: string; isDos = isDosDefault; ignoreCase = isDosDefault): bool | ||
walkGlobKinds glob.html#walkGlobKinds.i,,string,FilterDescend,FilterYield glob: walkGlobKinds(pattern: string | Glob; root = ""; options = defaultGlobOptions;\n filterDescend: FilterDescend = nil; filterYield: FilterYield = nil): GlobEntry | ||
walkGlob glob.html#walkGlob.i,,string,FilterDescend,FilterYield glob: walkGlob(pattern: string | Glob; root = ""; options = defaultGlobOptions;\n filterDescend: FilterDescend = nil; filterYield: FilterYield = nil): string | ||
Syntax glob.html#syntax Syntax | ||
Character classes glob.html#syntax-character-classes Character classes | ||
Matching special characters glob.html#character-classes-matching-special-characters Matching special characters | ||
POSIX classes glob.html#character-classes-posix-classes POSIX classes | ||
Extended pattern matching glob.html#syntax-extended-pattern-matching Extended pattern matching | ||
Examples glob.html#examples Examples | ||
Roadmap glob.html#roadmap Roadmap | ||
nimTitle glob glob.html module src/glob 0 | ||
nim Glob glob.html#Glob object Glob 152 | ||
nim GlobEntry glob.html#GlobEntry tuple GlobEntry 162 | ||
nim PatternStems glob.html#PatternStems tuple PatternStems 167 | ||
nim GlobOption glob.html#GlobOption enum GlobOption 174 | ||
nim GlobOptions glob.html#GlobOptions type GlobOptions 194 | ||
nim FilterDescend glob.html#FilterDescend type FilterDescend 201 | ||
nim FilterYield glob.html#FilterYield type FilterYield 209 | ||
nim defaultGlobOptions glob.html#defaultGlobOptions const defaultGlobOptions 218 | ||
nim hasMagic glob.html#hasMagic,string proc hasMagic(str: string): bool 234 | ||
nim globToRegex glob.html#globToRegex,string proc globToRegex(pattern: string; isDos = isDosDefault; ignoreCase = isDosDefault): Regex 337 | ||
nim splitPattern glob.html#splitPattern,string proc splitPattern(pattern: string): PatternStems 341 | ||
nim glob glob.html#glob,string proc glob(pattern: string; isDos = isDosDefault; ignoreCase = isDosDefault): Glob 364 | ||
nim matches glob.html#matches,string,Glob proc matches(input: string; glob: Glob): bool 379 | ||
nim matches glob.html#matches,string,string proc matches(input, pattern: string; isDos = isDosDefault; ignoreCase = isDosDefault): bool 397 | ||
nim walkGlobKinds glob.html#walkGlobKinds.i,,string,FilterDescend,FilterYield iterator walkGlobKinds(pattern: string | Glob; root = ""; options = defaultGlobOptions;\n filterDescend: FilterDescend = nil; filterYield: FilterYield = nil): GlobEntry 450 | ||
nim walkGlob glob.html#walkGlob.i,,string,FilterDescend,FilterYield iterator walkGlob(pattern: string | Glob; root = ""; options = defaultGlobOptions;\n filterDescend: FilterDescend = nil; filterYield: FilterYield = nil): string 564 | ||
nimgrp matches glob.html#matches-procs-all proc 379 | ||
heading Syntax glob.html#syntax Syntax 0 | ||
heading Character classes glob.html#syntax-character-classes Character classes 0 | ||
heading Matching special characters glob.html#character-classes-matching-special-characters Matching special characters 0 | ||
heading POSIX classes glob.html#character-classes-posix-classes POSIX classes 0 | ||
heading Extended pattern matching glob.html#syntax-extended-pattern-matching Extended pattern matching 0 | ||
heading Examples glob.html#examples Examples 0 | ||
heading Roadmap glob.html#roadmap Roadmap 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
GlobSyntaxError glob/regexer.html#GlobSyntaxError regexer: GlobSyntaxError | ||
globToRegexString glob/regexer.html#globToRegexString,string regexer: globToRegexString(pattern: string; isDos = isDosDefault;\n ignoreCase = isDosDefault): string | ||
nimTitle regexer glob/regexer.html module src/glob/regexer 0 | ||
nim GlobSyntaxError glob/regexer.html#GlobSyntaxError object GlobSyntaxError 10 | ||
nim globToRegexString glob/regexer.html#globToRegexString,string proc globToRegexString(pattern: string; isDos = isDosDefault;\n ignoreCase = isDosDefault): string 46 |
Oops, something went wrong.