func github.com/yuin/goldmark/util.ReadWhile
7 uses
github.com/yuin/goldmark/util (current package)
util.go#L103: func ReadWhile(source []byte, index [2]int, pred func(byte) bool) (int, bool) {
util.go#L603: i, ok = ReadWhile(source, [2]int{start, limit}, IsHexDecimal)
util.go#L615: i, ok = ReadWhile(source, [2]int{start, limit}, IsNumeric)
util.go#L648: i, ok = ReadWhile(source, [2]int{start, limit}, IsAlphaNumeric)
github.com/yuin/goldmark/renderer/html
html.go#L732: i, ok = util.ReadWhile(source, [2]int{start, limit}, util.IsHexDecimal)
html.go#L743: i, ok = util.ReadWhile(source, [2]int{start, limit}, util.IsNumeric)
html.go#L755: i, ok = util.ReadWhile(source, [2]int{start, limit}, util.IsAlphaNumeric)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |