class MathML::Root
Public Class Methods
new(index, base)
click to toggle source
Calls superclass method
# File lib/math_ml/element.rb 183 def initialize(index, base) 184 super('mroot') 185 self << base 186 self << index 187 end