| 76 | Iterator* NewEmptyIterator() { return new EmptyIterator(Status::OK()); } |
| 77 | |
| 78 | Iterator* NewErrorIterator(const Status& status) { |
| 79 | return new EmptyIterator(status); |
| 80 | } |
| 81 | |
| 82 | } // namespace table |
| 83 | } // namespace tensorflow |
no outgoing calls
no test coverage detected