Module: Mml::Base::Content::Matrixrow

Included in:
V2::Matrixrow, V3::Matrixrow, V4::Matrixrow
Defined in:
lib/mml/base/content/linear_algebra.rb

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



49
50
51
52
53
54
55
56
57
58
# File 'lib/mml/base/content/linear_algebra.rb', line 49

def self.included(klass)
  klass.class_eval do
    include LinearAlgebra

    xml do
      element "matrixrow"
      mixed_content
    end
  end
end