Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
762 B
Go
29 lines
762 B
Go
package graphemes
|
|
|
|
import "github.com/clipperhouse/uax29/v2/internal/iterators"
|
|
|
|
type Iterator[T iterators.Stringish] struct {
|
|
*iterators.Iterator[T]
|
|
}
|
|
|
|
var (
|
|
splitFuncString = splitFunc[string]
|
|
splitFuncBytes = splitFunc[[]byte]
|
|
)
|
|
|
|
// FromString returns an iterator for the grapheme clusters in the input string.
|
|
// Iterate while Next() is true, and access the grapheme via Value().
|
|
func FromString(s string) Iterator[string] {
|
|
return Iterator[string]{
|
|
iterators.New(splitFuncString, s),
|
|
}
|
|
}
|
|
|
|
// FromBytes returns an iterator for the grapheme clusters in the input bytes.
|
|
// Iterate while Next() is true, and access the grapheme via Value().
|
|
func FromBytes(b []byte) Iterator[[]byte] {
|
|
return Iterator[[]byte]{
|
|
iterators.New(splitFuncBytes, b),
|
|
}
|
|
}
|