class Ting::Initial

A Chinese initial (start of a syllable)

Constants

All
Groups

Attributes

name[R]

Public Class Methods

each(&blk) click to toggle source
# File lib/ting/groundwork.rb, line 28
def each(&blk) ; All.each(&blk) ; end

Private Class Methods

new(n) click to toggle source
# File lib/ting/groundwork.rb, line 18
def initialize(n) ; @name=n ; end

Public Instance Methods

+(f) click to toggle source
# File lib/ting/groundwork.rb, line 41
def +(f)
  Syllable.new(self,f)
end
inspect() click to toggle source
# File lib/ting/groundwork.rb, line 45
def inspect() ; "<#{self.class.name}::#{@name}>" ; end