MCPcopy Create free account
hub / github.com/NatLabRockies/SAM / Rows

Method Rows

src/variables.cpp:1883–1888  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1881 else return 0;
1882}
1883size_t VarValue::Rows()
1884{
1885 if (m_type == VV_ARRAY || m_type == VV_MATRIX) return m_val.nrows();
1886 else if (m_type == VV_NUMBER) return 1;
1887 else return 0;
1888}
1889size_t VarValue::Columns()
1890{
1891 if (m_type == VV_ARRAY || m_type == VV_MATRIX) return m_val.ncols();

Callers 2

ListByCountMethod · 0.80

Calls 1

nrowsMethod · 0.80

Tested by

no test coverage detected