File: unicode.go

package info (click to toggle)
golang-github-abadojack-whatlanggo 1.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 444 kB
  • sloc: makefile: 2
file content (10 lines) | stat: -rw-r--r-- 215 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
package whatlanggo

import "unicode"

var (
	_HiraganaKatakana = &unicode.RangeTable{
		R16: append(unicode.Hiragana.R16, unicode.Katakana.R16...),
		R32: append(unicode.Hiragana.R32, unicode.Katakana.R32...),
	}
)