Documentation
¶
Index ¶
Constants ¶
View Source
const ( // Features are information given to a word, such as follows: // 公園 名詞,一般,*,*,*,*,公園,コウエン,コーエン // に 助詞,格助詞,一般,*,*,*,に,ニ,ニ // 行っ 動詞,自立,*,*,五段・カ行促音便,連用タ接続,行く,イッ,イッ // た 助動詞,*,*,*,特殊・タ,基本形,た,タ,タ // EOS // POSHierarchy represents part-of-speech hierarchy // e.g. Columns 動詞,自立,*,* are POSs which hierarchy depth is 4. POSHierarchy = 4 // InflectionalType represents 活用型 (e.g. 五段・カ行促音便) InflectionalType FeatureIndex = 4 // InflectionalForm represents 活用形 (e.g. 連用タ接続) InflectionalForm = 5 // BaseForm represents 基本形 (e.g. 行く) BaseForm = 6 // Reading represents 読み (e.g. コウエン) Reading = 7 // Pronunciation represents 発音 (e.g. コーエン) Pronunciation = 8 )
Variables ¶
This section is empty.
Functions ¶
func DictShrink ¶
DictShrink returns a dictionary without content part. note. If an unshrinked dictionary already exists, this function returns it.
Types ¶
type FeatureIndex ¶
type FeatureIndex = int
type MultiSizeReaderAt ¶
type MultiSizeReaderAt struct {
// contains filtered or unexported fields
}
func (*MultiSizeReaderAt) ReadAt ¶
func (m *MultiSizeReaderAt) ReadAt(p []byte, off int64) (n int, err error)
func (MultiSizeReaderAt) Size ¶
func (m MultiSizeReaderAt) Size() int64
type SizeReaderAt ¶
func NewMultiSizeReaderAt ¶
func NewMultiSizeReaderAt(rs ...SizeReaderAt) SizeReaderAt
Click to show internal directories.
Click to hide internal directories.