MCPcopy Create free account
hub / github.com/NatLabRockies/EnergyPlus / read

Method read

src/EnergyPlus/IOFiles.hh:419–428  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

417 ReadResult<std::string> readLine() noexcept;
418
419 template <typename T> ReadResult<T> read() noexcept
420 {
421 if (is) {
422 T result;
423 *is >> result;
424 // Use operator bool, see ReadResult::good() docstring
425 return ReadResult<T>{result, is->eof(), bool(is)};
426 }
427 return ReadResult<T>{T{}, true, false};
428 }
429
430 std::string readFile();
431

Callers 15

generate_epJSON_schemaFunction · 0.80
convert2DFunction · 0.80
convertNDFunction · 0.80
add_fuel_typeFunction · 0.80
readFileFunction · 0.80
readFileMethod · 0.80
find_manual_mapping_htmlFunction · 0.80
parse_htmlFunction · 0.80
parse_encostFunction · 0.80
has_byte_order_markFunction · 0.80

Calls

no outgoing calls

Tested by 2

test_proper_runMethod · 0.64