class MathML::Root
Public Class Methods
new(index, base)
click to toggle source
Calls superclass method
# File lib/math_ml/element.rb 175 def initialize(index, base) 176 super("mroot") 177 self << base 178 self << index 179 end