text: golang.org/x/text/unicode/rangetable Index | Files

package rangetable

import "golang.org/x/text/unicode/rangetable"

Package rangetable provides utilities for creating and inspecting unicode.RangeTables.

Index

Package Files

merge.go rangetable.go tables.go

func Assigned

func Assigned(version string) *unicode.RangeTable

Assigned returns a RangeTable with all assigned code points for a given Unicode version. This includes graphic, format, control, and private-use characters. It returns nil if the data for the given version is not available.

func Merge

func Merge(ranges ...*unicode.RangeTable) *unicode.RangeTable

Merge returns a new RangeTable that is the union of the given tables. It can also be used to compact user-created RangeTables. The entries in R16 and R32 for any given RangeTable should be sorted and non-overlapping.

A lookup in the resulting table can be several times faster than using In directly on the ranges. Merge is an expensive operation, however, and only makes sense if one intends to use the result for more than a couple of hundred lookups.

func New

func New(r ...rune) *unicode.RangeTable

New creates a RangeTable from the given runes, which may contain duplicates.

func Visit

func Visit(rt *unicode.RangeTable, fn func(rune))

Visit visits all runes in the given RangeTable in order, calling fn for each.

Package rangetable imports 2 packages (graph). Updated 4 days ago. Refresh now. Tools for package owners.