Determines default for `values` when it is not provided, by inferring a 1 for each of the "leaves" and/or "branches", otherwise 0. The 'count' property is a flaglist and may be specified as a string containing: - Any combination of ['branches', 'le
(self)
| 89 | |
| 90 | @property |
| 91 | def count(self): |
| 92 | """ |
| 93 | Determines default for `values` when it is not provided, by |
| 94 | inferring a 1 for each of the "leaves" and/or "branches", |
| 95 | otherwise 0. |
| 96 | |
| 97 | The 'count' property is a flaglist and may be specified |
| 98 | as a string containing: |
| 99 | - Any combination of ['branches', 'leaves'] joined with '+' characters |
| 100 | (e.g. 'branches+leaves') |
| 101 | |
| 102 | Returns |
| 103 | ------- |
| 104 | Any |
| 105 | """ |
| 106 | return self["count"] |
| 107 | |
| 108 | @count.setter |
| 109 | def count(self, val): |