class MathML::Root

Public Class Methods

new(index, base) click to toggle source
Calls superclass method
# File lib/math_ml/element.rb, line 175
def initialize(index, base)
        super("mroot")
        self << base
        self << index
end