| 489 | |
| 490 | |
| 491 | qindex getNumLines(string lines) { |
| 492 | |
| 493 | /// @todo is this platform agnostic? |
| 494 | char newline = '\n'; |
| 495 | |
| 496 | return 1 + count(lines.begin(), lines.end(), newline); |
| 497 | } |
| 498 | |
| 499 | |
| 500 | PauliStrSum parser_validateAndParsePauliStrSum(string lines, bool rightIsLeastSignificant, const char* caller) { |
no outgoing calls
no test coverage detected