| 146 | |
| 147 | |
| 148 | bool TextWriter::findDim(Dimension::Id id, DimSpec& ds) |
| 149 | { |
| 150 | auto it = std::find_if(m_dims.begin(), m_dims.end(), |
| 151 | [id](const DimSpec& tds){ return tds.id == id; }); |
| 152 | if (it == m_dims.end()) |
| 153 | return false; |
| 154 | ds = *it; |
| 155 | return true; |
| 156 | } |
| 157 | |
| 158 | |
| 159 | void TextWriter::ready(PointTableRef table) |
no test coverage detected