Python collections.abc.ValuesView() Examples
The following are 2
code examples of collections.abc.ValuesView().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
collections.abc
, or try the search function
.
Example #1
Source File: utils.py From xarray-simlab with BSD 3-Clause "New" or "Revised" License | 5 votes |
def values(self): "D.values() -> an object providing a view on D's values" return ValuesView(self)
Example #2
Source File: _mutablemapping.py From compas with MIT License | 5 votes |
def values(self): """D.values() => an object providing a view on D's values""" return stdlib_collections.ValuesView(self)