(val)
| 444 | }, |
| 445 | |
| 446 | contain(val) { |
| 447 | // This method is typically used in axis trigger and markers. |
| 448 | // Users may be confused if the extent is restricted to `SCALE_EXTENT_KIND_EFFECTIVE`. |
| 449 | const extent = getScaleExtentForMappingUnsafe(this, null); |
| 450 | return val >= extent[0] && val <= extent[1]; |
| 451 | }, |
| 452 | |
| 453 | getExtent() { |
| 454 | return this._extents[SCALE_EXTENT_KIND_EFFECTIVE].slice(); |
nothing calls this directly
no test coverage detected