File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -1385,11 +1385,14 @@ def check_scalar(
1385
1385
Whether the interval defined by `min_val` and `max_val` should include
1386
1386
the boundaries. Possible choices are:
1387
1387
1388
- - `"left"`: only `min_val` is included in the valid interval;
1389
- - `"right"`: only `max_val` is included in the valid interval;
1390
- - `"both"`: `min_val` and `max_val` are included in the valid interval;
1388
+ - `"left"`: only `min_val` is included in the valid interval.
1389
+ It is equivalent to the interval `[ min_val, max_val )`.
1390
+ - `"right"`: only `max_val` is included in the valid interval.
1391
+ It is equivalent to the interval `( min_val, max_val ]`.
1392
+ - `"both"`: `min_val` and `max_val` are included in the valid interval.
1393
+ It is equivalent to the interval `[ min_val, max_val ]`.
1391
1394
- `"neither"`: neither `min_val` nor `max_val` are included in the
1392
- valid interval.
1395
+ valid interval. It is equivalent to the interval `( min_val, max_val )`.
1393
1396
1394
1397
Returns
1395
1398
-------
You can’t perform that action at this time.
0 commit comments