Returns a list of functions associated with this dataset. Returns: A list of `StructuredFunctionWrapper` objects.
(self)
| 255 | # TODO(jsimsa): Change this to be the transitive closure of functions used |
| 256 | # by this dataset and its inputs. |
| 257 | def _functions(self): |
| 258 | """Returns a list of functions associated with this dataset. |
| 259 | |
| 260 | Returns: |
| 261 | A list of `StructuredFunctionWrapper` objects. |
| 262 | """ |
| 263 | return [] |
| 264 | |
| 265 | def options(self): |
| 266 | """Returns the options for this dataset and its inputs. |
no outgoing calls