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>
26 lines
610 B
Go
26 lines
610 B
Go
// Package graphemes implements Unicode grapheme cluster boundaries: https://unicode.org/reports/tr29/#Grapheme_Cluster_Boundaries
|
|
package graphemes
|
|
|
|
import (
|
|
"bufio"
|
|
"io"
|
|
)
|
|
|
|
type Scanner struct {
|
|
*bufio.Scanner
|
|
}
|
|
|
|
// FromReader returns a Scanner, to split graphemes per
|
|
// https://unicode.org/reports/tr29/#Grapheme_Cluster_Boundaries.
|
|
//
|
|
// It embeds a [bufio.Scanner], so you can use its methods.
|
|
//
|
|
// Iterate through graphemes by calling Scan() until false, then check Err().
|
|
func FromReader(r io.Reader) *Scanner {
|
|
sc := bufio.NewScanner(r)
|
|
sc.Split(SplitFunc)
|
|
return &Scanner{
|
|
Scanner: sc,
|
|
}
|
|
}
|