Option
Optional values.
Option[T]
represents an optional value:
every Option[T]
is either Some[T]
and
contains a value, or Null
, and does not.
Option[T]
types can be very common in python code,
as they have a number of uses:
- Initial values (see
ReAwaitable[T]
); - Return values for functions not defined over their entire input range (partial functions);
- Return value for otherwise reporting simple errors, where
Null
is returned on error; - Optional function arguments (albeit slightly unergonomic).
Option[T]
is commonly paired with pattern matching to query
the presence of Some[T]
value (T
) and take action,
always accounting for the Null
case:
# option.py
from wraps import NULL, Option, Some
def divide(numerator: float, denominator: float) -> Option[float]:
return Some(numerator / denominator) if denominator else NULL
from wraps import Null, Some
from option import divide
DIVISION_BY_ZERO = "division by zero"
match divide(1.0, 2.0):
case Some(result):
print(result)
case Null():
print(DIVISION_BY_ZERO)
Here, we know that Null
represents only one case,
that is, attempts to divide by zero. However, when we need to represent multiple errors
from one function, we might want to use Result[T, E]
instead,
as described in the result
section.
Option = Union[Some[T], Null]
module-attribute
NULL = Null()
module-attribute
The instance of Null
.
wrap_option = wrap_option_on(NormalError)
module-attribute
An instance of WrapOption[NormalError]
(see NormalError
).
wrap_option_await = wrap_option_await_on(NormalError)
module-attribute
An instance of WrapOptionAwait[NormalError]
(see NormalError
).
OptionProtocol
Bases: AsyncIterable[T]
, Iterable[T]
, Protocol[T]
Source code in src/wraps/option.py
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 |
|
is_some() -> bool
Checks if the option is Some[T]
.
Example
some = Some(42)
assert some.is_some()
null = NULL
assert not null.is_some()
Returns:
Type | Description |
---|---|
bool
|
Whether the option is |
Source code in src/wraps/option.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
|
is_some_and(predicate: Predicate[T]) -> bool
Checks if the option is Some[T]
and the value
inside of it matches the predicate
.
Example
def is_positive(value: int) -> bool:
return value > 0
some = Some(13)
assert some.is_some_and(is_positive)
zero = Some(0)
assert not zero.is_some_and(is_positive)
null = NULL
assert not null.is_some_and(is_positive)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
predicate |
Predicate[T]
|
The predicate to check the possibly contained value against. |
required |
Returns:
Type | Description |
---|---|
bool
|
Whether the option is |
Source code in src/wraps/option.py
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
|
is_some_and_await(predicate: AsyncPredicate[T]) -> bool
async
Checks if the option is Some[T]
and the value
inside of it matches the asynchronous predicate
.
Example
async def is_negative(value: int) -> bool:
return value < 0
some = Some(-42)
assert await some.is_some_and_await(is_negative)
zero = Some(0)
assert not await zero.is_some_and_await(is_negative)
null = NULL
assert not await null.is_some_and_await(is_negative)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
predicate |
AsyncPredicate[T]
|
The asynchronous predicate to check the possibly contained value against. |
required |
Returns:
Type | Description |
---|---|
bool
|
Whether the option is |
bool
|
the asynchronous predicate is matched. |
Source code in src/wraps/option.py
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 |
|
is_null() -> bool
Checks if the option is Null
.
Example
null = NULL
assert null.is_null()
some = Some(34)
assert not some.is_null()
Returns:
Type | Description |
---|---|
bool
|
Whether the option is |
Source code in src/wraps/option.py
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
|
expect(message: str) -> T
Returns the contained Some[T]
value.
Example
>>> some = Some(42)
>>> some.expect("panic!")
42
>>> null = NULL
>>> null.expect("panic!")
Traceback (most recent call last):
...
wraps.panics.Panic: panic!
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message |
str
|
The message to use in panicking. |
required |
Raises:
Type | Description |
---|---|
Panic
|
Panics with the |
Returns:
Type | Description |
---|---|
T
|
The contained value. |
Source code in src/wraps/option.py
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 |
|
extract() -> Optional[T]
Returns the contained Some[T]
value or None
.
Example
>>> some = Some(42)
>>> some.extract()
42
>>> null = NULL
>>> null.extract()
>>> # None
Returns:
Type | Description |
---|---|
Optional[T]
|
The contained value or |
Source code in src/wraps/option.py
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
|
unwrap() -> T
Returns the contained Some[T]
value.
Because this function may panic, its use is generally discouraged.
Instead, prefer to use pattern matching and handle the Null
case explicitly, or call unwrap_or
or unwrap_or_else
.
Example
>>> some = Some(42)
>>> some.unwrap()
42
>>> null = NULL
>>> null.unwrap()
Traceback (most recent call last):
...
wraps.panics.Panic: called `unwrap` on null
Raises:
Type | Description |
---|---|
Panic
|
Panics if the option is |
Returns:
Type | Description |
---|---|
T
|
The contained value. |
Source code in src/wraps/option.py
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 |
|
unwrap_or(default: T) -> T
Returns the contained Some[T]
value or the provided default
.
Example
some = Some(13)
assert some.unwrap_or(0)
null = NULL
assert not null.unwrap_or(0)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
default |
T
|
The default value to use. |
required |
Returns:
Type | Description |
---|---|
T
|
The contained value or the |
Source code in src/wraps/option.py
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 |
|
unwrap_or_else(default: Nullary[T]) -> T
Returns the contained Some[T]
value or
computes it from the default
function.
Example
some = Some(13)
assert some.unwrap_or_else(int)
null = NULL
assert not null.unwrap_or_else(int)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
default |
Nullary[T]
|
The default-computing function to use. |
required |
Returns:
Type | Description |
---|---|
T
|
The contained value or the |
Source code in src/wraps/option.py
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 |
|
unwrap_or_else_await(default: AsyncNullary[T]) -> T
async
Returns the contained Some[T]
value
or computes it from the asynchronous default
function.
Example
async def default() -> int:
return 0
some = Some(42)
assert await some.unwrap_or_else_await(default)
null = NULL
assert not await null.unwrap_or_else_await(default)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
default |
AsyncNullary[T]
|
The asynchronous default-computing function to use. |
required |
Returns:
Type | Description |
---|---|
T
|
The contained value or the |
Source code in src/wraps/option.py
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 |
|
or_raise(error: AnyError) -> T
Returns the contained Some[T]
value
or raises the error
provided.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
error |
AnyError
|
The error to raise if the option is |
required |
Raises:
Type | Description |
---|---|
AnyError
|
The error provided, if the option is |
Returns:
Type | Description |
---|---|
T
|
The contained value. |
Source code in src/wraps/option.py
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 |
|
or_raise_with(error: Nullary[AnyError]) -> T
Returns the contained Some[T]
value
or raises the error computed from error
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
error |
Nullary[AnyError]
|
The function computing the error to raise
if the option is |
required |
Raises:
Type | Description |
---|---|
AnyError
|
The error computed, if the option is |
Returns:
Type | Description |
---|---|
T
|
The contained value. |
Source code in src/wraps/option.py
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 |
|
or_raise_with_await(error: AsyncNullary[AnyError]) -> T
async
Returns the contained Some[T]
value
or raises the error computed asynchronously from error
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
error |
AsyncNullary[AnyError]
|
The asynchronous function computing the error to raise
if the option is |
required |
Raises:
Type | Description |
---|---|
AnyError
|
The error computed, if the option is |
Returns:
Type | Description |
---|---|
T
|
The contained value. |
Source code in src/wraps/option.py
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 |
|
inspect(function: Inspect[T]) -> Option[T]
Inspects a possibly contained Option[T]
value.
Example
some = Some("Hello, world!")
same = some.inspect(print) # Hello, world!
assert some == same
Parameters:
Name | Type | Description | Default |
---|---|---|---|
function |
Inspect[T]
|
The inspecting function. |
required |
Returns:
Type | Description |
---|---|
Option[T]
|
The inspected option. |
Source code in src/wraps/option.py
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 |
|
inspect_await(function: AsyncInspect[T]) -> Option[T]
async
Inspects a possibly contained Option[T]
value.
Example
async def function(value: str) -> None:
print(value)
some = Some("Hello, world!")
same = await some.inspect(function) # Hello, world!
assert some == same
Parameters:
Name | Type | Description | Default |
---|---|---|---|
function |
AsyncInspect[T]
|
The asynchronous inspecting function. |
required |
Returns:
Type | Description |
---|---|
Option[T]
|
The inspected option. |
Source code in src/wraps/option.py
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 |
|
map(function: Unary[T, U]) -> Option[U]
Maps an Option[T]
to an Option[U]
by applying the function
to the contained value.
Example
some = Some("Hello, world!")
print(some.map(len).unwrap()) # 13
Parameters:
Name | Type | Description | Default |
---|---|---|---|
function |
Unary[T, U]
|
The function to apply. |
required |
Returns:
Type | Description |
---|---|
Option[U]
|
The mapped option. |
Source code in src/wraps/option.py
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 |
|
map_or(default: U, function: Unary[T, U]) -> U
Returns the default
value (if none), or applies the function
to the contained value (if any).
Example
some = Some("nekit")
print(some.map_or(42, len)) # 5
null = NULL
print(null.map_or(42, len)) # 42
Parameters:
Name | Type | Description | Default |
---|---|---|---|
default |
U
|
The default value to use. |
required |
function |
Unary[T, U]
|
The function to apply. |
required |
Returns:
Type | Description |
---|---|
U
|
The resulting value or the |
Source code in src/wraps/option.py
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 |
|
map_or_else(default: Nullary[U], function: Unary[T, U]) -> U
Computes the default value from the default
function (if none),
or applies the function
to the contained value (if any).
Example
def default() -> int:
return 42
some = Some("Hello, world!")
print(some.map_or_else(default, len)) # 13
null = NULL
print(null.map_or_else(default, len)) # 42
Parameters:
Name | Type | Description | Default |
---|---|---|---|
default |
Nullary[U]
|
The default-computing function to use. |
required |
function |
Unary[T, U]
|
The function to apply. |
required |
Returns:
Type | Description |
---|---|
U
|
The resulting value or the |
Source code in src/wraps/option.py
508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 |
|
map_or_else_await(default: AsyncNullary[U], function: Unary[T, U]) -> U
async
Computes the default value from the asynchronous default
function (if none),
or applies the function
to the contained value (if any).
Example
async def default() -> int:
return 42
some = Some("Hello, world!")
print(await some.map_or_else_await(default, len)) # 13
null = NULL
print(await null.map_or_else_await(default, len)) # 42
Parameters:
Name | Type | Description | Default |
---|---|---|---|
default |
AsyncNullary[U]
|
The asynchronous default-computing function to use. |
required |
function |
Unary[T, U]
|
The function to apply. |
required |
Returns:
Type | Description |
---|---|
U
|
The resulting value or the |
Source code in src/wraps/option.py
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 |
|
map_await(function: AsyncUnary[T, U]) -> Option[U]
async
Maps an Option[T]
to an Option[U]
by applying the asynchronous function
to the contained value.
Example
async def function(value: str) -> int:
return len(value)
some = Some("Hello, world!")
mapped = await some.map_await(function)
print(some.unwrap()) # 13
Parameters:
Name | Type | Description | Default |
---|---|---|---|
function |
AsyncUnary[T, U]
|
The asynchronous function to apply. |
required |
Returns:
Type | Description |
---|---|
Option[U]
|
The mapped option. |
Source code in src/wraps/option.py
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 |
|
map_await_or(default: U, function: AsyncUnary[T, U]) -> U
async
Returns the default
value (if none), or applies the asynchronous function
to the contained value (if any).
Example
async def function(value: str) -> int:
return len(value)
some = Some("nekit")
print(await some.map_await_or(42, function)) # 5
null = NULL
print(await null.map_await_or(42, function)) # 42
Parameters:
Name | Type | Description | Default |
---|---|---|---|
default |
U
|
The default value to use. |
required |
function |
AsyncUnary[T, U]
|
The asynchronous function to apply. |
required |
Returns:
Type | Description |
---|---|
U
|
The resulting value or the |
Source code in src/wraps/option.py
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 |
|
map_await_or_else(default: Nullary[U], function: AsyncUnary[T, U]) -> U
async
Computes the default value from the default
function (if none),
or applies the asynchronous function
to the contained value (if any).
Example
async def function(value: str) -> int:
return len(value)
def default() -> int:
return 0
some = Some("Hello, world!")
print(await some.map_await_or_else(default, function)) # 13
null = NULL
print(await null.map_await_or_else(default, function)) # 0
Parameters:
Name | Type | Description | Default |
---|---|---|---|
default |
Nullary[U]
|
The default-computing function to use. |
required |
function |
AsyncUnary[T, U]
|
The asynchronous function to apply. |
required |
Returns:
Type | Description |
---|---|
U
|
The resulting value or the |
Source code in src/wraps/option.py
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 |
|
map_await_or_else_await(default: AsyncNullary[U], function: AsyncUnary[T, U]) -> U
async
Computes the default value (if none), or applies the asynchronous function
to the contained value (if any).
Example
async def default() -> int:
return 42
async def function(value: str) -> int:
return len(value)
some = Some("Hello, world!")
print(await some.map_await_or_else_await(default, function)) # 13
null = NULL
print(await null.map_await_or_else_await(default, function)) # 42
Parameters:
Name | Type | Description | Default |
---|---|---|---|
default |
AsyncNullary[U]
|
The asynchronous default function to use. |
required |
function |
AsyncUnary[T, U]
|
The asynchronous function to apply. |
required |
Returns:
Type | Description |
---|---|
U
|
The resulting value or the |
Source code in src/wraps/option.py
648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 |
|
ok_or(error: E) -> Result[T, E]
Transforms an Option[T]
into a Result[T, E]
, mapping Some(value)
to Ok(value)
and Null
to Err(error)
.
Example
error = 13
some = Some(42)
assert some.ok_or(error).is_ok()
null = NULL
assert null.ok_or(error).is_err()
Parameters:
Name | Type | Description | Default |
---|---|---|---|
error |
E
|
The error to use. |
required |
Returns:
Type | Description |
---|---|
Result[T, E]
|
The transformed result. |
Source code in src/wraps/option.py
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 |
|
ok_or_else(error: Nullary[E]) -> Result[T, E]
Transforms an Option[T]
into a Result[T, E]
, mapping Some(value)
to Ok(value)
and Null
to Err(error())
.
Example
def error() -> Err[int]:
return Err(0)
some = Some(7)
assert some.ok_or_else(error).is_ok()
null = NULL
assert null.ok_or_else(error).is_err()
Parameters:
Name | Type | Description | Default |
---|---|---|---|
error |
Nullary[E]
|
The error-computing function to use. |
required |
Returns:
Type | Description |
---|---|
Result[T, E]
|
The transformed result. |
Source code in src/wraps/option.py
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 |
|
ok_or_else_await(error: AsyncNullary[E]) -> Result[T, E]
async
Transforms an Option[T]
into a Result[T, E]
, mapping Some(value)
to Ok(value)
and Null
to Err(await error())
.
Example
async def error() -> Err[int]:
return Err(0)
some = Some(7)
result = await some.ok_or_else_await(error)
assert result.is_ok()
null = NULL
result = await null.ok_or_else_await(error)
assert result.is_err()
Parameters:
Name | Type | Description | Default |
---|---|---|---|
error |
AsyncNullary[E]
|
The error-computing function to use. |
required |
Returns:
Type | Description |
---|---|
Result[T, E]
|
The transformed result. |
Source code in src/wraps/option.py
734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 |
|
iter() -> Iterator[T]
Returns an iterator over the possibly contained value.
Example
>>> some = Some(42)
>>> next(some.iter(), 0)
42
>>> null = NULL
>>> next(null.iter(), 0)
0
Returns:
Type | Description |
---|---|
Iterator[T]
|
An iterator over the possible value. |
Source code in src/wraps/option.py
765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 |
|
async_iter() -> AsyncIterator[T]
Returns an asynchronous iterator over the possibly contained value.
Example
>>> some = Some(42)
>>> await async_next(some.async_iter(), 0)
42
>>> null = NULL
>>> await async_next(null.async_iter(), 0)
0
Returns:
Type | Description |
---|---|
AsyncIterator[T]
|
An asynchronous iterator over the possible value. |
Source code in src/wraps/option.py
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 |
|
and_then(function: Unary[T, Option[U]]) -> Option[U]
Returns the option if it is Null
,
otherwise calls the function
with the wrapped value and returns the result.
This function is also known as bind in functional programming.
Example
def inverse(value: float) -> Option[float]:
return Some(1.0 / value) if value else NULL
some = Some(2.0)
print(some.and_then(inverse).unwrap()) # 0.5
zero = Some(0.0)
assert zero.and_then(inverse).is_null()
null = NULL
assert null.and_then(inverse).is_null()
Parameters:
Name | Type | Description | Default |
---|---|---|---|
function |
Unary[T, Option[U]]
|
The function to apply. |
required |
Returns:
Type | Description |
---|---|
Option[U]
|
The resulting option. |
Source code in src/wraps/option.py
803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 |
|
and_then_await(function: AsyncUnary[T, Option[U]]) -> Option[U]
async
Returns the option if it is Null
,
otherwise calls the asynchronous function
with the wrapped value and returns the result.
Example
async def inverse(value: float) -> Option[float]:
return Some(1.0 / value) if value else NULL
some = Some(2.0)
option = await some.and_then_await(inverse)
print(option.unwrap()) # 0.5
zero = Some(0.0)
option = await zero.and_then_await(inverse)
assert option.is_null()
null = NULL
option = await null.and_then_await(inverse)
assert option.is_null()
Parameters:
Name | Type | Description | Default |
---|---|---|---|
function |
AsyncUnary[T, Option[U]]
|
The asynchronous function to apply. |
required |
Returns:
Type | Description |
---|---|
Option[U]
|
The resulting option. |
Source code in src/wraps/option.py
833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 |
|
filter(predicate: Predicate[T]) -> Option[T]
Returns the option if it is Null
,
otherwise calls the predicate
with the wrapped value and returns:
Some(value)
if the containedvalue
matches the predicate, andNull
otherwise.
Example
def is_even(value: int) -> bool:
return not value % 2
null = NULL
assert null.filter(is_even).is_null()
even = Some(2)
assert even.filter(is_even).is_some()
odd = Some(1)
assert odd.filter(is_even).is_null()
Parameters:
Name | Type | Description | Default |
---|---|---|---|
predicate |
Predicate[T]
|
The predicate to check the contained value against. |
required |
Returns:
Type | Description |
---|---|
Option[T]
|
The resulting option. |
Source code in src/wraps/option.py
867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 |
|
filter_await(predicate: AsyncPredicate[T]) -> Option[T]
async
Returns the option if it is Null
,
otherwise calls the asynchronous predicate
with the wrapped value and returns:
Some(value)
if the containedvalue
matches the predicate, andNull
otherwise.
Example
async def is_even(value: int) -> bool:
return not value % 2
null = NULL
assert (await null.filter_await(is_even)).is_null()
even = Some(2)
assert (await even.filter_await(is_even)).is_some()
odd = Some(1)
assert (await odd.filter_await(is_even)).is_null()
Parameters:
Name | Type | Description | Default |
---|---|---|---|
predicate |
AsyncPredicate[T]
|
The asynchronous predicate to check the contained value against. |
required |
Returns:
Type | Description |
---|---|
Option[T]
|
The resulting option. |
Source code in src/wraps/option.py
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 |
|
or_else(default: Nullary[Option[T]]) -> Option[T]
Returns the option if it contains a value, otherwise calls
the default
function and returns the result.
Example
def default() -> Some[int]:
return Some(13)
some = Some(42)
null = NULL
assert some.or_else(default).is_some()
assert null.or_else(default).is_some()
Parameters:
Name | Type | Description | Default |
---|---|---|---|
default |
Nullary[Option[T]]
|
The default-computing function to use. |
required |
Returns:
Type | Description |
---|---|
Option[T]
|
The resulting option. |
Source code in src/wraps/option.py
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 |
|
or_else_await(default: AsyncNullary[Option[T]]) -> Option[T]
async
Returns the option if it contains a value, otherwise calls
the asynchronous default
function and returns the result.
Example
async def default() -> Some[int]:
return Some(13)
some = Some(42)
null = NULL
assert (await some.or_else_await(default)).is_some()
assert (await null.or_else_await(default)).is_some()
Parameters:
Name | Type | Description | Default |
---|---|---|---|
default |
AsyncNullary[Option[T]]
|
The asynchronous default function to use. |
required |
Returns:
Type | Description |
---|---|
Option[T]
|
The resulting option. |
Source code in src/wraps/option.py
954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 |
|
xor(option: Option[T]) -> Option[T]
Returns Some[T]
if exactly one of self
and option
is Some[T]
, otherwise returns Null
.
Example
some = Some(69)
other = Some(7)
null = NULL
assert some.xor(other) == null
assert null.xor(other) == other
assert some.xor(null) == some
assert null.xor(null) == null
Parameters:
Name | Type | Description | Default |
---|---|---|---|
option |
Option[T]
|
The option to xor |
required |
Returns:
Type | Description |
---|---|
Option[T]
|
The resulting option. |
Source code in src/wraps/option.py
979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 |
|
zip(option: Option[U]) -> Option[Tuple[T, U]]
Zips self
with an option
.
If self
is Some(s)
and option
is Some(o)
,
this method returns Some((s, o))
. Otherwise,
Null
is returned.
Example
x = 0.7
y = 1.3
some_x = Some(x)
some_y = Some(y)
some_tuple = Some((x, y))
assert some_x.zip(some_y) == some_point
null = NULL
assert some_y.zip(null) == null
Parameters:
Name | Type | Description | Default |
---|---|---|---|
option |
Option[U]
|
The option to zip |
required |
Returns:
Type | Description |
---|---|
Option[Tuple[T, U]]
|
The resulting option. |
Source code in src/wraps/option.py
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 |
|
zip_with(option: Option[U], function: Binary[T, U, V]) -> Option[V]
Zips self
with an option
using function
.
If self
is Some(s)
and option
is Some(o)
,
this method returns Some(function(s, o))
. Otherwise,
Null
is returned.
Example
@frozen()
class Point:
x: float
y: float
x = 1.3
y = 4.2
some_x = Some(x)
some_y = Some(y)
some_point = Some(Point(x, y))
assert some_x.zip_with(some_y, Point) == some_point
null = NULL
assert some_x.zip_with(null, Point) == null
Parameters:
Name | Type | Description | Default |
---|---|---|---|
option |
Option[U]
|
The option to zip |
required |
function |
Binary[T, U, V]
|
The function to use for zipping. |
required |
Returns:
Type | Description |
---|---|
Option[V]
|
The resulting option. |
Source code in src/wraps/option.py
1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 |
|
zip_with_await(option: Option[U], function: AsyncBinary[T, U, V]) -> Option[V]
async
Zips self
with an option
using asynchronous function
.
If self
is Some(s)
and option
is Some(o)
,
this method returns Some(await function(s, o))
. Otherwise,
Null
is returned.
Example
@frozen()
class Point:
x: float
y: float
async def point(x: float, y: float) -> Point:
return Point(x, y)
x = 1.3
y = 4.2
some_x = Some(x)
some_y = Some(y)
some_point = Some(Point(x, y))
assert await some_x.zip_with(some_y, point) == some_point
null = NULL
assert await some_x.zip_with(null, point) == null
Parameters:
Name | Type | Description | Default |
---|---|---|---|
option |
Option[U]
|
The option to zip |
required |
function |
AsyncBinary[T, U, V]
|
The asynchronous function to use for zipping. |
required |
Returns:
Type | Description |
---|---|
Option[V]
|
The resulting option. |
Source code in src/wraps/option.py
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 |
|
unzip() -> Tuple[Option[U], Option[V]]
Unzips an option into two options.
If self
is Some((u, v))
, this method returns
(Some(u)
, Some(v)
) tuple.
Otherwise, (Null
, Null
) is returned.
Example
```python value = 13 other = 42
zipped = Some((value, other))
assert zipped.unzip() == (Some(value), Some(other))
null = NULL
assert null.unzip() == (NULL, NULL)
Returns:
Type | Description |
---|---|
Tuple[Option[U], Option[V]]
|
The resulting tuple of two options. |
Source code in src/wraps/option.py
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 |
|
flatten() -> Option[U]
Flattens an Option[Option[T]]
to Option[T]
.
Example
some = Some(42)
some_nested = Some(some)
assert some_nested.flatten() == some
null = NULL
null_nested = Some(null)
assert null_nested.flatten() == null
assert null.flatten() == null
Returns:
Type | Description |
---|---|
Option[U]
|
The flattened option. |
Source code in src/wraps/option.py
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 |
|
contains(value: U) -> bool
Checks if the contained value (if any) is equal to value
.
Example
value = 42
other = 69
some = Some(value)
assert some.contains(value)
assert not some.contains(other)
null = NULL
assert not null.contains(value)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
U
|
The value to check against. |
required |
Returns:
Type | Description |
---|---|
bool
|
Whether the contained value is equal to |
Source code in src/wraps/option.py
1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 |
|
early() -> T
Functionally similar to the question-mark (?
) operator in Rust.
Calls to this method are to be combined with
@early_option
decorators to work properly.
Source code in src/wraps/option.py
1192 1193 1194 1195 1196 1197 1198 1199 |
|
Null
Bases: OptionProtocol[Never]
The Null
variant of Option[T]
.
Source code in src/wraps/option.py
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 |
|
Some
Bases: OptionProtocol[T]
Source code in src/wraps/option.py
1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 |
|
WrapOption
Bases: Generic[A]
Wraps functions returning T
into functions returning
Option[T]
.
Errors are handled via returning NULL
on error
of
error_types
, wrapping the resulting
value
into Some(value)
.
Source code in src/wraps/option.py
1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 |
|
error_types: ErrorTypes[A]
instance-attribute
The error types to handle. See ErrorTypes[A]
.
WrapOptionAwait
Bases: Generic[A]
Wraps asynchronous functions returning T
into functions returning
Option[T]
.
Errors are handled via returning NULL
on error
of
error_types
, wrapping the resulting
value
into Some(value)
.
Source code in src/wraps/option.py
1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 |
|
error_types: ErrorTypes[A]
instance-attribute
The error types to handle. See ErrorTypes[A]
.
is_some(option: Option[T]) -> TypeIs[Some[T]]
This is the same as Option.is_some
,
except it works as a type guard.
Source code in src/wraps/option.py
1530 1531 1532 1533 1534 |
|
is_null(option: Option[T]) -> TypeIs[Null]
This is the same as Option.is_null
,
except it works as a type guard.
Source code in src/wraps/option.py
1537 1538 1539 1540 1541 |
|
wrap_optional(optional: Optional[T]) -> Option[T]
Wraps Optional[T]
into Option[T]
.
If the argument is None
, NULL
is returned.
Otherwise the value
(of type T
) is wrapped into Some(value)
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
optional |
Optional[T]
|
The optional value to wrap. |
required |
Returns:
Type | Description |
---|---|
Option[T]
|
The wrapped option. |
Source code in src/wraps/option.py
1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 |
|
wrap_option_on(head: Type[A], *tail: Type[A]) -> WrapOption[A]
Creates WrapOption[A]
decorators.
This function enforces at least one error type to be provided.
Example
@wrap_option_on(ValueError)
def parse(string: str) -> int:
return int(string)
assert parse("256").is_some()
assert parse("uwu").is_null()
Parameters:
Name | Type | Description | Default |
---|---|---|---|
head |
Type[A]
|
The head of the error types to handle. |
required |
*tail |
Type[A]
|
The tail of the error types to handle. |
()
|
Returns:
Type | Description |
---|---|
WrapOption[A]
|
The |
Source code in src/wraps/option.py
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 |
|
wrap_option_await_on(head: Type[A], *tail: Type[A]) -> WrapOptionAwait[A]
Creates WrapOptionAwait[A]
decorators.
This function enforces at least one error type to be provided.
Example
@wrap_option_await_on(ValueError)
async def parse(string: str) -> int:
return int(string)
assert (await parse("256")).is_some()
assert (await parse("uwu")).is_null()
Parameters:
Name | Type | Description | Default |
---|---|---|---|
head |
Type[A]
|
The head of the error types to handle. |
required |
*tail |
Type[A]
|
The tail of the error types to handle. |
()
|
Returns:
Type | Description |
---|---|
WrapOptionAwait[A]
|
The |
Source code in src/wraps/option.py
1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 |
|