MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / Between

Function Between

tensorflow/core/lib/io/table_test.cc:537–546  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

535}
536
537static bool Between(uint64 val, uint64 low, uint64 high) {
538 bool result = (val >= low) && (val <= high);
539 if (!result) {
540 fprintf(stderr, "Value %llu is not in range [%llu, %llu]\n",
541 static_cast<unsigned long long>(val),
542 static_cast<unsigned long long>(low),
543 static_cast<unsigned long long>(high));
544 }
545 return result;
546}
547
548class TableTest {};
549

Callers 1

TESTFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected