English  English::Infinitive::Rule

Parent

  • Object

Methods

[Validate]
Generated with RDazzle Newfish 1.3.0

Rule

Attributes

type[R]
suffix[R]
suffix1[R]
suffix2[R]
order[R]

Processing Order

number[R]

McIlroy’s Rule Number

Public Class Methods

new(type, suffix, suffix1, suffix2, order, number) click to toggle source
     # File lib/english/infinitive.rb, line 588
588:       def initialize(type, suffix, suffix1, suffix2, order, number)
589:         @type    = type
590:         @suffix  = suffix
591:         @suffix1 = suffix1
592:         @suffix2 = suffix2
593:         @order   = order
594:         @number  = number
595:       end

Public Instance Methods

<=>(other) click to toggle source
     # File lib/english/infinitive.rb, line 597
597:       def <=>(other)
598:         order <=> other.order
599:       end

Disabled; run with --debug to generate this.