Skip to content

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

Optional value, expressed as the union of Some[T] and Null.

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

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
class OptionProtocol(AsyncIterable[T], Iterable[T], Protocol[T]):  # type: ignore[misc]
    def __iter__(self) -> Iterator[T]:
        return self.iter()

    def __aiter__(self) -> AsyncIterator[T]:
        return self.async_iter()

    @required
    def is_some(self) -> bool:
        """Checks if the option is [`Some[T]`][wraps.option.Some].

        Example:
            ```python
            some = Some(42)
            assert some.is_some()

            null = NULL
            assert not null.is_some()
            ```

        Returns:
            Whether the option is [`Some[T]`][wraps.option.Some].
        """
        ...

    @required
    def is_some_and(self, predicate: Predicate[T]) -> bool:
        """Checks if the option is [`Some[T]`][wraps.option.Some] and the value
        inside of it matches the `predicate`.

        Example:
            ```python
            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)
            ```

        Arguments:
            predicate: The predicate to check the possibly contained value against.

        Returns:
            Whether the option is [`Some[T]`][wraps.option.Some] and the predicate is matched.
        """
        ...

    @required
    async def is_some_and_await(self, predicate: AsyncPredicate[T]) -> bool:
        """Checks if the option is [`Some[T]`][wraps.option.Some] and the value
        inside of it matches the asynchronous `predicate`.

        Example:
            ```python
            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)
            ```

        Arguments:
            predicate: The asynchronous predicate to check the possibly contained value against.

        Returns:
            Whether the option is [`Some[T]`][wraps.option.Some] and
            the asynchronous predicate is matched.
        """
        ...

    @required
    def is_null(self) -> bool:
        """Checks if the option is [`Null`][wraps.option.Null].

        Example:
            ```python
            null = NULL
            assert null.is_null()

            some = Some(34)
            assert not some.is_null()
            ```

        Returns:
            Whether the option is [`Null`][wraps.option.Null].
        """
        ...

    @required
    def expect(self, message: str) -> T:
        """Returns the contained [`Some[T]`][wraps.option.Some] value.

        Example:
            ```python
            >>> some = Some(42)
            >>> some.expect("panic!")
            42
            >>> null = NULL
            >>> null.expect("panic!")
            Traceback (most recent call last):
              ...
            wraps.panics.Panic: panic!
            ```

        Arguments:
            message: The message to use in panicking.

        Raises:
            Panic: Panics with the `message` if the option is [`Null`][wraps.option.Null].

        Returns:
            The contained value.
        """
        ...

    @required
    def extract(self) -> Optional[T]:
        """Returns the contained [`Some[T]`][wraps.option.Some] value or [`None`][None].

        Example:
            ```python
            >>> some = Some(42)
            >>> some.extract()
            42
            >>> null = NULL
            >>> null.extract()
            >>> # None
            ```

        Returns:
            The contained value or [`None`][None].
        """
        ...

    @required
    def unwrap(self) -> T:
        """Returns the contained [`Some[T]`][wraps.option.Some] value.

        Because this function may panic, its use is generally discouraged.

        Instead, prefer to use pattern matching and handle the [`Null`][wraps.option.Null]
        case explicitly, or call [`unwrap_or`][wraps.option.OptionProtocol.unwrap_or]
        or [`unwrap_or_else`][wraps.option.OptionProtocol.unwrap_or_else].

        Example:
            ```python
            >>> some = Some(42)
            >>> some.unwrap()
            42
            >>> null = NULL
            >>> null.unwrap()
            Traceback (most recent call last):
              ...
            wraps.panics.Panic: called `unwrap` on null
            ```

        Raises:
            Panic: Panics if the option is [`Null`][wraps.option.Null].

        Returns:
            The contained value.
        """
        ...

    @required
    def unwrap_or(self, default: T) -> T:  # type: ignore[misc]
        """Returns the contained [`Some[T]`][wraps.option.Some] value or the provided `default`.

        Example:
            ```python
            some = Some(13)
            assert some.unwrap_or(0)

            null = NULL
            assert not null.unwrap_or(0)
            ```

        Arguments:
            default: The default value to use.

        Returns:
            The contained value or the `default` one.
        """
        ...

    @required
    def unwrap_or_else(self, default: Nullary[T]) -> T:
        """Returns the contained [`Some[T]`][wraps.option.Some] value or
        computes it from the `default` function.

        Example:
            ```python
            some = Some(13)
            assert some.unwrap_or_else(int)

            null = NULL
            assert not null.unwrap_or_else(int)
            ```

        Arguments:
            default: The default-computing function to use.

        Returns:
            The contained value or the `default()` one.
        """
        ...

    @required
    async def unwrap_or_else_await(self, default: AsyncNullary[T]) -> T:
        """Returns the contained [`Some[T]`][wraps.option.Some] value
        or computes it from the asynchronous `default` function.

        Example:
            ```python
            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)
            ```

        Arguments:
            default: The asynchronous default-computing function to use.

        Returns:
            The contained value or the `await default()` one.
        """
        ...

    @required
    def or_raise(self, error: AnyError) -> T:
        """Returns the contained [`Some[T]`][wraps.option.Some] value
        or raises the `error` provided.

        Arguments:
            error: The error to raise if the option is [`Null`][wraps.option.Null].

        Raises:
            AnyError: The error provided, if the option is [`Null`][wraps.option.Null].

        Returns:
            The contained value.
        """
        ...

    @required
    def or_raise_with(self, error: Nullary[AnyError]) -> T:
        """Returns the contained [`Some[T]`][wraps.option.Some] value
        or raises the error computed from `error`.

        Arguments:
            error: The function computing the error to raise
                if the option is [`Null`][wraps.option.Null].

        Raises:
            AnyError: The error computed, if the option is [`Null`][wraps.option.Null].

        Returns:
            The contained value.
        """
        ...

    @required
    async def or_raise_with_await(self, error: AsyncNullary[AnyError]) -> T:
        """Returns the contained [`Some[T]`][wraps.option.Some] value
        or raises the error computed asynchronously from `error`.

        Arguments:
            error: The asynchronous function computing the error to raise
                if the option is [`Null`][wraps.option.Null].

        Raises:
            AnyError: The error computed, if the option is [`Null`][wraps.option.Null].

        Returns:
            The contained value.
        """
        ...

    @required
    def inspect(self, function: Inspect[T]) -> Option[T]:
        """Inspects a possibly contained [`Option[T]`][wraps.option.Option] value.

        Example:
            ```python
            some = Some("Hello, world!")

            same = some.inspect(print)  # Hello, world!

            assert some == same
            ```

        Arguments:
            function: The inspecting function.

        Returns:
            The inspected option.
        """
        ...

    @required
    async def inspect_await(self, function: AsyncInspect[T]) -> Option[T]:
        """Inspects a possibly contained [`Option[T]`][wraps.option.Option] value.

        Example:
            ```python
            async def function(value: str) -> None:
                print(value)

            some = Some("Hello, world!")

            same = await some.inspect(function)  # Hello, world!

            assert some == same
            ```

        Arguments:
            function: The asynchronous inspecting function.

        Returns:
            The inspected option.
        """
        ...

    @required
    def map(self, function: Unary[T, U]) -> Option[U]:
        """Maps an [`Option[T]`][wraps.option.Option] to an [`Option[U]`][wraps.option.Option]
        by applying the `function` to the contained value.

        Example:
            ```python
            some = Some("Hello, world!")

            print(some.map(len).unwrap())  # 13
            ```

        Arguments:
            function: The function to apply.

        Returns:
            The mapped option.
        """
        ...

    @required
    def map_or(self, default: U, function: Unary[T, U]) -> U:
        """Returns the `default` value (if none), or applies the `function`
        to the contained value (if any).

        Example:
            ```python
            some = Some("nekit")

            print(some.map_or(42, len))  # 5

            null = NULL

            print(null.map_or(42, len))  # 42
            ```

        Arguments:
            default: The default value to use.
            function: The function to apply.

        Returns:
            The resulting value or the `default` one.
        """
        ...

    @required
    def map_or_else(self, 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:
            ```python
            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
            ```

        Arguments:
            default: The default-computing function to use.
            function: The function to apply.

        Returns:
            The resulting value or the `default()` one.
        """
        ...

    @required
    async def map_or_else_await(self, default: AsyncNullary[U], function: Unary[T, U]) -> U:
        """Computes the default value from the asynchronous `default` function (if none),
        or applies the `function` to the contained value (if any).

        Example:
            ```python
            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
            ```

        Arguments:
            default: The asynchronous default-computing function to use.
            function: The function to apply.

        Returns:
            The resulting value or the `await default()` one.
        """
        ...

    @required
    async def map_await(self, function: AsyncUnary[T, U]) -> Option[U]:
        """Maps an [`Option[T]`][wraps.option.Option] to an [`Option[U]`][wraps.option.Option]
        by applying the asynchronous `function` to the contained value.

        Example:
            ```python
            async def function(value: str) -> int:
                return len(value)

            some = Some("Hello, world!")

            mapped = await some.map_await(function)

            print(some.unwrap())  # 13
            ```

        Arguments:
            function: The asynchronous function to apply.

        Returns:
            The mapped option.
        """
        ...

    @required
    async def map_await_or(self, default: U, function: AsyncUnary[T, U]) -> U:
        """Returns the `default` value (if none), or applies the asynchronous `function`
        to the contained value (if any).

        Example:
            ```python
            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
            ```

        Arguments:
            default: The default value to use.
            function: The asynchronous function to apply.

        Returns:
            The resulting value or the `default` one.
        """
        ...

    @required
    async def map_await_or_else(self, default: Nullary[U], function: AsyncUnary[T, U]) -> U:
        """Computes the default value from the `default` function (if none),
        or applies the asynchronous `function` to the contained value (if any).

        Example:
            ```python
            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
            ```

        Arguments:
            default: The default-computing function to use.
            function: The asynchronous function to apply.

        Returns:
            The resulting value or the `default()` one.
        """
        ...

    @required
    async def map_await_or_else_await(
        self, default: AsyncNullary[U], function: AsyncUnary[T, U]
    ) -> U:
        """Computes the default value (if none), or applies the asynchronous `function`
        to the contained value (if any).

        Example:
            ```python
            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
            ```

        Arguments:
            default: The asynchronous default function to use.
            function: The asynchronous function to apply.

        Returns:
            The resulting value or the `await default()` one.
        """
        ...

    @required
    def ok_or(self, error: E) -> Result[T, E]:
        """Transforms an [`Option[T]`][wraps.option.Option]
        into a [`Result[T, E]`][wraps.result.Result], mapping [`Some(value)`][wraps.option.Some]
        to [`Ok(value)`][wraps.result.Ok] and [`Null`][wraps.option.Null]
        to [`Err(error)`][wraps.result.Err].

        Example:
            ```python
            error = 13

            some = Some(42)
            assert some.ok_or(error).is_ok()

            null = NULL
            assert null.ok_or(error).is_err()
            ```

        Arguments:
            error: The error to use.

        Returns:
            The transformed result.
        """
        ...

    @required
    def ok_or_else(self, error: Nullary[E]) -> Result[T, E]:
        """Transforms an [`Option[T]`][wraps.option.Option]
        into a [`Result[T, E]`][wraps.result.Result], mapping [`Some(value)`][wraps.option.Some]
        to [`Ok(value)`][wraps.result.Ok] and [`Null`][wraps.option.Null]
        to [`Err(error())`][wraps.result.Err].

        Example:
            ```python
            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()
            ```

        Arguments:
            error: The error-computing function to use.

        Returns:
            The transformed result.
        """
        ...

    @required
    async def ok_or_else_await(self, error: AsyncNullary[E]) -> Result[T, E]:
        """Transforms an [`Option[T]`][wraps.option.Option]
        into a [`Result[T, E]`][wraps.result.Result], mapping [`Some(value)`][wraps.option.Some]
        to [`Ok(value)`][wraps.result.Ok] and [`Null`][wraps.option.Null]
        to [`Err(await error())`][wraps.result.Err].

        Example:
            ```python
            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()
            ```

        Arguments:
            error: The error-computing function to use.

        Returns:
            The transformed result.
        """
        ...

    @required
    def iter(self) -> Iterator[T]:
        """Returns an iterator over the possibly contained value.

        Example:
            ```python
            >>> some = Some(42)
            >>> next(some.iter(), 0)
            42
            >>> null = NULL
            >>> next(null.iter(), 0)
            0
            ```

        Returns:
            An iterator over the possible value.
        """
        ...

    @required
    def async_iter(self) -> AsyncIterator[T]:
        """Returns an asynchronous iterator over the possibly contained value.

        Example:
            ```python
            >>> some = Some(42)
            >>> await async_next(some.async_iter(), 0)
            42
            >>> null = NULL
            >>> await async_next(null.async_iter(), 0)
            0
            ```

        Returns:
            An asynchronous iterator over the possible value.
        """
        ...

    @required
    def and_then(self, function: Unary[T, Option[U]]) -> Option[U]:
        """Returns the option if it is [`Null`][wraps.option.Null],
        otherwise calls the `function` with the wrapped value and returns the result.

        This function is also known as *bind* in functional programming.

        Example:
            ```python
            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()
            ```

        Arguments:
            function: The function to apply.

        Returns:
            The resulting option.
        """
        ...

    @required
    async def and_then_await(self, function: AsyncUnary[T, Option[U]]) -> Option[U]:
        """Returns the option if it is [`Null`][wraps.option.Null],
        otherwise calls the asynchronous `function` with the wrapped value and returns the result.

        Example:
            ```python
            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()
            ```

        Arguments:
            function: The asynchronous function to apply.

        Returns:
            The resulting option.
        """
        ...

    @required
    def filter(self, predicate: Predicate[T]) -> Option[T]:
        """Returns the option if it is [`Null`][wraps.option.Null],
        otherwise calls the `predicate` with the wrapped value and returns:

        - [`Some(value)`][wraps.option.Some] if the contained `value` matches the predicate, and
        - [`Null`][wraps.option.Null] otherwise.

        Example:
            ```python
            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()
            ```

        Arguments:
            predicate: The predicate to check the contained value against.

        Returns:
            The resulting option.
        """
        ...

    @required
    async def filter_await(self, predicate: AsyncPredicate[T]) -> Option[T]:
        """Returns the option if it is [`Null`][wraps.option.Null],
        otherwise calls the asynchronous `predicate` with the wrapped value and returns:

        - [`Some(value)`][wraps.option.Some] if the contained `value` matches the predicate, and
        - [`Null`][wraps.option.Null] otherwise.

        Example:
            ```python
            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()
            ```

        Arguments:
            predicate: The asynchronous predicate to check the contained value against.

        Returns:
            The resulting option.
        """
        ...

    @required
    def or_else(self, default: Nullary[Option[T]]) -> Option[T]:
        """Returns the option if it contains a value, otherwise calls
        the `default` function and returns the result.

        Example:
            ```python
            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()
            ```

        Arguments:
            default: The default-computing function to use.

        Returns:
            The resulting option.
        """
        ...

    @required
    async def or_else_await(self, default: AsyncNullary[Option[T]]) -> Option[T]:
        """Returns the option if it contains a value, otherwise calls
        the asynchronous `default` function and returns the result.

        Example:
            ```python
            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()
            ```

        Arguments:
            default: The asynchronous default function to use.

        Returns:
            The resulting option.
        """
        ...

    @required
    def xor(self, option: Option[T]) -> Option[T]:
        """Returns [`Some[T]`][wraps.option.Some] if exactly one of `self` and `option`
        is [`Some[T]`][wraps.option.Option], otherwise returns [`Null`][wraps.option.Null].

        Example:
            ```python
            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
            ```

        Arguments:
            option: The option to *xor* `self` with.

        Returns:
            The resulting option.
        """
        ...

    @required
    def zip(self, option: Option[U]) -> Option[Tuple[T, U]]:
        """Zips `self` with an `option`.

        If `self` is [`Some(s)`][wraps.option.Some] and `option` is [`Some(o)`][wraps.option.Some],
        this method returns [`Some((s, o))`][wraps.option.Some]. Otherwise,
        [`Null`][wraps.option.Null] is returned.

        Example:
            ```python
            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
            ```

        Arguments:
            option: The option to *zip* `self` with.

        Returns:
            The resulting option.
        """
        ...

    @required
    def zip_with(self, option: Option[U], function: Binary[T, U, V]) -> Option[V]:
        """Zips `self` with an `option` using `function`.

        If `self` is [`Some(s)`][wraps.option.Some] and `option` is [`Some(o)`][wraps.option.Some],
        this method returns [`Some(function(s, o))`][wraps.option.Some]. Otherwise,
        [`Null`][wraps.option.Null] is returned.

        Example:
            ```python
            @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
            ```

        Arguments:
            option: The option to *zip* `self` with.
            function: The function to use for zipping.

        Returns:
            The resulting option.
        """
        ...

    @required
    async def zip_with_await(self, option: Option[U], function: AsyncBinary[T, U, V]) -> Option[V]:
        """Zips `self` with an `option` using asynchronous `function`.

        If `self` is [`Some(s)`][wraps.option.Some] and `option` is [`Some(o)`][wraps.option.Some],
        this method returns [`Some(await function(s, o))`][wraps.option.Some]. Otherwise,
        [`Null`][wraps.option.Null] is returned.

        Example:
            ```python
            @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
            ```

        Arguments:
            option: The option to *zip* `self` with.
            function: The asynchronous function to use for zipping.

        Returns:
            The resulting option.
        """
        ...

    @required
    def unzip(self: OptionProtocol[Tuple[U, V]]) -> Tuple[Option[U], Option[V]]:
        """Unzips an option into two options.

        If `self` is [`Some((u, v))`][wraps.option.Some], this method returns
        ([`Some(u)`][wraps.option.Some], [`Some(v)`][wraps.option.Some]) tuple.
        Otherwise, ([`Null`][wraps.option.Null], [`Null`][wraps.option.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:
            The resulting tuple of two options.
        """
        ...

    def flatten(self: OptionProtocol[OptionProtocol[U]]) -> Option[U]:
        """Flattens an [`Option[Option[T]]`][wraps.option.Option]
        to [`Option[T]`][wraps.option.Option].

        Example:
            ```python
            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:
            The flattened option.
        """
        return self.and_then(identity)  # type: ignore[arg-type]

    @required
    def contains(self, value: U) -> bool:
        """Checks if the contained value (if any) is equal to `value`.

        Example:
            ```python
            value = 42
            other = 69

            some = Some(value)
            assert some.contains(value)
            assert not some.contains(other)

            null = NULL
            assert not null.contains(value)
            ```

        Arguments:
            value: The value to check against.

        Returns:
            Whether the contained value is equal to `value`.
        """
        ...

    @required
    def early(self) -> T:
        """Functionally similar to the *question-mark* (`?`) operator in Rust.

        Calls to this method are to be combined with
        [`@early_option`][wraps.early.decorators.early_option] decorators to work properly.
        """
        ...

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 Some[T].

Source code in src/wraps/option.py
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
@required
def is_some(self) -> bool:
    """Checks if the option is [`Some[T]`][wraps.option.Some].

    Example:
        ```python
        some = Some(42)
        assert some.is_some()

        null = NULL
        assert not null.is_some()
        ```

    Returns:
        Whether the option is [`Some[T]`][wraps.option.Some].
    """
    ...

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 Some[T] and the predicate is matched.

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
@required
def is_some_and(self, predicate: Predicate[T]) -> bool:
    """Checks if the option is [`Some[T]`][wraps.option.Some] and the value
    inside of it matches the `predicate`.

    Example:
        ```python
        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)
        ```

    Arguments:
        predicate: The predicate to check the possibly contained value against.

    Returns:
        Whether the option is [`Some[T]`][wraps.option.Some] and the predicate is matched.
    """
    ...

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 Some[T] and

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
@required
async def is_some_and_await(self, predicate: AsyncPredicate[T]) -> bool:
    """Checks if the option is [`Some[T]`][wraps.option.Some] and the value
    inside of it matches the asynchronous `predicate`.

    Example:
        ```python
        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)
        ```

    Arguments:
        predicate: The asynchronous predicate to check the possibly contained value against.

    Returns:
        Whether the option is [`Some[T]`][wraps.option.Some] and
        the asynchronous predicate is matched.
    """
    ...

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 Null.

Source code in src/wraps/option.py
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
@required
def is_null(self) -> bool:
    """Checks if the option is [`Null`][wraps.option.Null].

    Example:
        ```python
        null = NULL
        assert null.is_null()

        some = Some(34)
        assert not some.is_null()
        ```

    Returns:
        Whether the option is [`Null`][wraps.option.Null].
    """
    ...

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 message if the option is Null.

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
@required
def expect(self, message: str) -> T:
    """Returns the contained [`Some[T]`][wraps.option.Some] value.

    Example:
        ```python
        >>> some = Some(42)
        >>> some.expect("panic!")
        42
        >>> null = NULL
        >>> null.expect("panic!")
        Traceback (most recent call last):
          ...
        wraps.panics.Panic: panic!
        ```

    Arguments:
        message: The message to use in panicking.

    Raises:
        Panic: Panics with the `message` if the option is [`Null`][wraps.option.Null].

    Returns:
        The contained value.
    """
    ...

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 None.

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
@required
def extract(self) -> Optional[T]:
    """Returns the contained [`Some[T]`][wraps.option.Some] value or [`None`][None].

    Example:
        ```python
        >>> some = Some(42)
        >>> some.extract()
        42
        >>> null = NULL
        >>> null.extract()
        >>> # None
        ```

    Returns:
        The contained value or [`None`][None].
    """
    ...

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 Null.

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
@required
def unwrap(self) -> T:
    """Returns the contained [`Some[T]`][wraps.option.Some] value.

    Because this function may panic, its use is generally discouraged.

    Instead, prefer to use pattern matching and handle the [`Null`][wraps.option.Null]
    case explicitly, or call [`unwrap_or`][wraps.option.OptionProtocol.unwrap_or]
    or [`unwrap_or_else`][wraps.option.OptionProtocol.unwrap_or_else].

    Example:
        ```python
        >>> some = Some(42)
        >>> some.unwrap()
        42
        >>> null = NULL
        >>> null.unwrap()
        Traceback (most recent call last):
          ...
        wraps.panics.Panic: called `unwrap` on null
        ```

    Raises:
        Panic: Panics if the option is [`Null`][wraps.option.Null].

    Returns:
        The contained value.
    """
    ...

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 default one.

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
@required
def unwrap_or(self, default: T) -> T:  # type: ignore[misc]
    """Returns the contained [`Some[T]`][wraps.option.Some] value or the provided `default`.

    Example:
        ```python
        some = Some(13)
        assert some.unwrap_or(0)

        null = NULL
        assert not null.unwrap_or(0)
        ```

    Arguments:
        default: The default value to use.

    Returns:
        The contained value or the `default` one.
    """
    ...

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 default() one.

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
@required
def unwrap_or_else(self, default: Nullary[T]) -> T:
    """Returns the contained [`Some[T]`][wraps.option.Some] value or
    computes it from the `default` function.

    Example:
        ```python
        some = Some(13)
        assert some.unwrap_or_else(int)

        null = NULL
        assert not null.unwrap_or_else(int)
        ```

    Arguments:
        default: The default-computing function to use.

    Returns:
        The contained value or the `default()` one.
    """
    ...

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 await default() one.

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
@required
async def unwrap_or_else_await(self, default: AsyncNullary[T]) -> T:
    """Returns the contained [`Some[T]`][wraps.option.Some] value
    or computes it from the asynchronous `default` function.

    Example:
        ```python
        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)
        ```

    Arguments:
        default: The asynchronous default-computing function to use.

    Returns:
        The contained value or the `await default()` one.
    """
    ...

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 Null.

required

Raises:

Type Description
AnyError

The error provided, if the option is Null.

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
@required
def or_raise(self, error: AnyError) -> T:
    """Returns the contained [`Some[T]`][wraps.option.Some] value
    or raises the `error` provided.

    Arguments:
        error: The error to raise if the option is [`Null`][wraps.option.Null].

    Raises:
        AnyError: The error provided, if the option is [`Null`][wraps.option.Null].

    Returns:
        The contained value.
    """
    ...

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 Null.

required

Raises:

Type Description
AnyError

The error computed, if the option is Null.

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
@required
def or_raise_with(self, error: Nullary[AnyError]) -> T:
    """Returns the contained [`Some[T]`][wraps.option.Some] value
    or raises the error computed from `error`.

    Arguments:
        error: The function computing the error to raise
            if the option is [`Null`][wraps.option.Null].

    Raises:
        AnyError: The error computed, if the option is [`Null`][wraps.option.Null].

    Returns:
        The contained value.
    """
    ...

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 Null.

required

Raises:

Type Description
AnyError

The error computed, if the option is Null.

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
@required
async def or_raise_with_await(self, error: AsyncNullary[AnyError]) -> T:
    """Returns the contained [`Some[T]`][wraps.option.Some] value
    or raises the error computed asynchronously from `error`.

    Arguments:
        error: The asynchronous function computing the error to raise
            if the option is [`Null`][wraps.option.Null].

    Raises:
        AnyError: The error computed, if the option is [`Null`][wraps.option.Null].

    Returns:
        The contained value.
    """
    ...

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
@required
def inspect(self, function: Inspect[T]) -> Option[T]:
    """Inspects a possibly contained [`Option[T]`][wraps.option.Option] value.

    Example:
        ```python
        some = Some("Hello, world!")

        same = some.inspect(print)  # Hello, world!

        assert some == same
        ```

    Arguments:
        function: The inspecting function.

    Returns:
        The inspected option.
    """
    ...

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
@required
async def inspect_await(self, function: AsyncInspect[T]) -> Option[T]:
    """Inspects a possibly contained [`Option[T]`][wraps.option.Option] value.

    Example:
        ```python
        async def function(value: str) -> None:
            print(value)

        some = Some("Hello, world!")

        same = await some.inspect(function)  # Hello, world!

        assert some == same
        ```

    Arguments:
        function: The asynchronous inspecting function.

    Returns:
        The inspected option.
    """
    ...

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
@required
def map(self, function: Unary[T, U]) -> Option[U]:
    """Maps an [`Option[T]`][wraps.option.Option] to an [`Option[U]`][wraps.option.Option]
    by applying the `function` to the contained value.

    Example:
        ```python
        some = Some("Hello, world!")

        print(some.map(len).unwrap())  # 13
        ```

    Arguments:
        function: The function to apply.

    Returns:
        The mapped option.
    """
    ...

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 default one.

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
@required
def map_or(self, default: U, function: Unary[T, U]) -> U:
    """Returns the `default` value (if none), or applies the `function`
    to the contained value (if any).

    Example:
        ```python
        some = Some("nekit")

        print(some.map_or(42, len))  # 5

        null = NULL

        print(null.map_or(42, len))  # 42
        ```

    Arguments:
        default: The default value to use.
        function: The function to apply.

    Returns:
        The resulting value or the `default` one.
    """
    ...

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 default() one.

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
@required
def map_or_else(self, 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:
        ```python
        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
        ```

    Arguments:
        default: The default-computing function to use.
        function: The function to apply.

    Returns:
        The resulting value or the `default()` one.
    """
    ...

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 await default() one.

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
@required
async def map_or_else_await(self, default: AsyncNullary[U], function: Unary[T, U]) -> U:
    """Computes the default value from the asynchronous `default` function (if none),
    or applies the `function` to the contained value (if any).

    Example:
        ```python
        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
        ```

    Arguments:
        default: The asynchronous default-computing function to use.
        function: The function to apply.

    Returns:
        The resulting value or the `await default()` one.
    """
    ...

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
@required
async def map_await(self, function: AsyncUnary[T, U]) -> Option[U]:
    """Maps an [`Option[T]`][wraps.option.Option] to an [`Option[U]`][wraps.option.Option]
    by applying the asynchronous `function` to the contained value.

    Example:
        ```python
        async def function(value: str) -> int:
            return len(value)

        some = Some("Hello, world!")

        mapped = await some.map_await(function)

        print(some.unwrap())  # 13
        ```

    Arguments:
        function: The asynchronous function to apply.

    Returns:
        The mapped option.
    """
    ...

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 default one.

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
@required
async def map_await_or(self, default: U, function: AsyncUnary[T, U]) -> U:
    """Returns the `default` value (if none), or applies the asynchronous `function`
    to the contained value (if any).

    Example:
        ```python
        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
        ```

    Arguments:
        default: The default value to use.
        function: The asynchronous function to apply.

    Returns:
        The resulting value or the `default` one.
    """
    ...

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 default() one.

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
@required
async def map_await_or_else(self, default: Nullary[U], function: AsyncUnary[T, U]) -> U:
    """Computes the default value from the `default` function (if none),
    or applies the asynchronous `function` to the contained value (if any).

    Example:
        ```python
        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
        ```

    Arguments:
        default: The default-computing function to use.
        function: The asynchronous function to apply.

    Returns:
        The resulting value or the `default()` one.
    """
    ...

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 await default() one.

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
@required
async def map_await_or_else_await(
    self, default: AsyncNullary[U], function: AsyncUnary[T, U]
) -> U:
    """Computes the default value (if none), or applies the asynchronous `function`
    to the contained value (if any).

    Example:
        ```python
        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
        ```

    Arguments:
        default: The asynchronous default function to use.
        function: The asynchronous function to apply.

    Returns:
        The resulting value or the `await default()` one.
    """
    ...

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
@required
def ok_or(self, error: E) -> Result[T, E]:
    """Transforms an [`Option[T]`][wraps.option.Option]
    into a [`Result[T, E]`][wraps.result.Result], mapping [`Some(value)`][wraps.option.Some]
    to [`Ok(value)`][wraps.result.Ok] and [`Null`][wraps.option.Null]
    to [`Err(error)`][wraps.result.Err].

    Example:
        ```python
        error = 13

        some = Some(42)
        assert some.ok_or(error).is_ok()

        null = NULL
        assert null.ok_or(error).is_err()
        ```

    Arguments:
        error: The error to use.

    Returns:
        The transformed result.
    """
    ...

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
@required
def ok_or_else(self, error: Nullary[E]) -> Result[T, E]:
    """Transforms an [`Option[T]`][wraps.option.Option]
    into a [`Result[T, E]`][wraps.result.Result], mapping [`Some(value)`][wraps.option.Some]
    to [`Ok(value)`][wraps.result.Ok] and [`Null`][wraps.option.Null]
    to [`Err(error())`][wraps.result.Err].

    Example:
        ```python
        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()
        ```

    Arguments:
        error: The error-computing function to use.

    Returns:
        The transformed result.
    """
    ...

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
@required
async def ok_or_else_await(self, error: AsyncNullary[E]) -> Result[T, E]:
    """Transforms an [`Option[T]`][wraps.option.Option]
    into a [`Result[T, E]`][wraps.result.Result], mapping [`Some(value)`][wraps.option.Some]
    to [`Ok(value)`][wraps.result.Ok] and [`Null`][wraps.option.Null]
    to [`Err(await error())`][wraps.result.Err].

    Example:
        ```python
        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()
        ```

    Arguments:
        error: The error-computing function to use.

    Returns:
        The transformed result.
    """
    ...

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
@required
def iter(self) -> Iterator[T]:
    """Returns an iterator over the possibly contained value.

    Example:
        ```python
        >>> some = Some(42)
        >>> next(some.iter(), 0)
        42
        >>> null = NULL
        >>> next(null.iter(), 0)
        0
        ```

    Returns:
        An iterator over the possible value.
    """
    ...

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
@required
def async_iter(self) -> AsyncIterator[T]:
    """Returns an asynchronous iterator over the possibly contained value.

    Example:
        ```python
        >>> some = Some(42)
        >>> await async_next(some.async_iter(), 0)
        42
        >>> null = NULL
        >>> await async_next(null.async_iter(), 0)
        0
        ```

    Returns:
        An asynchronous iterator over the possible value.
    """
    ...

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
@required
def and_then(self, function: Unary[T, Option[U]]) -> Option[U]:
    """Returns the option if it is [`Null`][wraps.option.Null],
    otherwise calls the `function` with the wrapped value and returns the result.

    This function is also known as *bind* in functional programming.

    Example:
        ```python
        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()
        ```

    Arguments:
        function: The function to apply.

    Returns:
        The resulting option.
    """
    ...

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
@required
async def and_then_await(self, function: AsyncUnary[T, Option[U]]) -> Option[U]:
    """Returns the option if it is [`Null`][wraps.option.Null],
    otherwise calls the asynchronous `function` with the wrapped value and returns the result.

    Example:
        ```python
        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()
        ```

    Arguments:
        function: The asynchronous function to apply.

    Returns:
        The resulting option.
    """
    ...

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 contained value matches the predicate, and
  • Null 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
@required
def filter(self, predicate: Predicate[T]) -> Option[T]:
    """Returns the option if it is [`Null`][wraps.option.Null],
    otherwise calls the `predicate` with the wrapped value and returns:

    - [`Some(value)`][wraps.option.Some] if the contained `value` matches the predicate, and
    - [`Null`][wraps.option.Null] otherwise.

    Example:
        ```python
        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()
        ```

    Arguments:
        predicate: The predicate to check the contained value against.

    Returns:
        The resulting option.
    """
    ...

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 contained value matches the predicate, and
  • Null 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
@required
async def filter_await(self, predicate: AsyncPredicate[T]) -> Option[T]:
    """Returns the option if it is [`Null`][wraps.option.Null],
    otherwise calls the asynchronous `predicate` with the wrapped value and returns:

    - [`Some(value)`][wraps.option.Some] if the contained `value` matches the predicate, and
    - [`Null`][wraps.option.Null] otherwise.

    Example:
        ```python
        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()
        ```

    Arguments:
        predicate: The asynchronous predicate to check the contained value against.

    Returns:
        The resulting option.
    """
    ...

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
@required
def or_else(self, default: Nullary[Option[T]]) -> Option[T]:
    """Returns the option if it contains a value, otherwise calls
    the `default` function and returns the result.

    Example:
        ```python
        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()
        ```

    Arguments:
        default: The default-computing function to use.

    Returns:
        The resulting option.
    """
    ...

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
@required
async def or_else_await(self, default: AsyncNullary[Option[T]]) -> Option[T]:
    """Returns the option if it contains a value, otherwise calls
    the asynchronous `default` function and returns the result.

    Example:
        ```python
        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()
        ```

    Arguments:
        default: The asynchronous default function to use.

    Returns:
        The resulting option.
    """
    ...

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 self with.

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
@required
def xor(self, option: Option[T]) -> Option[T]:
    """Returns [`Some[T]`][wraps.option.Some] if exactly one of `self` and `option`
    is [`Some[T]`][wraps.option.Option], otherwise returns [`Null`][wraps.option.Null].

    Example:
        ```python
        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
        ```

    Arguments:
        option: The option to *xor* `self` with.

    Returns:
        The resulting option.
    """
    ...

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 self with.

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
@required
def zip(self, option: Option[U]) -> Option[Tuple[T, U]]:
    """Zips `self` with an `option`.

    If `self` is [`Some(s)`][wraps.option.Some] and `option` is [`Some(o)`][wraps.option.Some],
    this method returns [`Some((s, o))`][wraps.option.Some]. Otherwise,
    [`Null`][wraps.option.Null] is returned.

    Example:
        ```python
        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
        ```

    Arguments:
        option: The option to *zip* `self` with.

    Returns:
        The resulting option.
    """
    ...

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 self with.

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
@required
def zip_with(self, option: Option[U], function: Binary[T, U, V]) -> Option[V]:
    """Zips `self` with an `option` using `function`.

    If `self` is [`Some(s)`][wraps.option.Some] and `option` is [`Some(o)`][wraps.option.Some],
    this method returns [`Some(function(s, o))`][wraps.option.Some]. Otherwise,
    [`Null`][wraps.option.Null] is returned.

    Example:
        ```python
        @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
        ```

    Arguments:
        option: The option to *zip* `self` with.
        function: The function to use for zipping.

    Returns:
        The resulting option.
    """
    ...

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 self with.

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
@required
async def zip_with_await(self, option: Option[U], function: AsyncBinary[T, U, V]) -> Option[V]:
    """Zips `self` with an `option` using asynchronous `function`.

    If `self` is [`Some(s)`][wraps.option.Some] and `option` is [`Some(o)`][wraps.option.Some],
    this method returns [`Some(await function(s, o))`][wraps.option.Some]. Otherwise,
    [`Null`][wraps.option.Null] is returned.

    Example:
        ```python
        @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
        ```

    Arguments:
        option: The option to *zip* `self` with.
        function: The asynchronous function to use for zipping.

    Returns:
        The resulting option.
    """
    ...

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
@required
def unzip(self: OptionProtocol[Tuple[U, V]]) -> Tuple[Option[U], Option[V]]:
    """Unzips an option into two options.

    If `self` is [`Some((u, v))`][wraps.option.Some], this method returns
    ([`Some(u)`][wraps.option.Some], [`Some(v)`][wraps.option.Some]) tuple.
    Otherwise, ([`Null`][wraps.option.Null], [`Null`][wraps.option.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:
        The resulting tuple of two options.
    """
    ...

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
def flatten(self: OptionProtocol[OptionProtocol[U]]) -> Option[U]:
    """Flattens an [`Option[Option[T]]`][wraps.option.Option]
    to [`Option[T]`][wraps.option.Option].

    Example:
        ```python
        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:
        The flattened option.
    """
    return self.and_then(identity)  # type: ignore[arg-type]

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 value.

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
@required
def contains(self, value: U) -> bool:
    """Checks if the contained value (if any) is equal to `value`.

    Example:
        ```python
        value = 42
        other = 69

        some = Some(value)
        assert some.contains(value)
        assert not some.contains(other)

        null = NULL
        assert not null.contains(value)
        ```

    Arguments:
        value: The value to check against.

    Returns:
        Whether the contained value is equal to `value`.
    """
    ...

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
@required
def early(self) -> T:
    """Functionally similar to the *question-mark* (`?`) operator in Rust.

    Calls to this method are to be combined with
    [`@early_option`][wraps.early.decorators.early_option] decorators to work properly.
    """
    ...

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
@final
@frozen()
class Null(OptionProtocol[Never]):
    """The [`Null`][wraps.option.Null] variant of [`Option[T]`][wraps.option.Option]."""

    def __bool__(self) -> Literal[False]:
        return False

    def __repr__(self) -> str:
        return empty_repr(self)

    @classmethod
    def create(cls) -> Null:
        return cls()

    def is_some(self) -> Literal[False]:
        return False

    def is_some_and(self, predicate: Predicate[T]) -> Literal[False]:
        return False

    async def is_some_and_await(self, predicate: AsyncPredicate[T]) -> Literal[False]:
        return False

    def is_null(self) -> Literal[True]:
        return True

    def expect(self, message: str) -> Never:
        panic(message)

    def extract(self) -> None:
        return None

    def unwrap(self) -> Never:
        panic(UNWRAP_ON_NULL)

    def unwrap_or(self, default: U) -> U:
        return default

    def unwrap_or_else(self, default: Nullary[U]) -> U:
        return default()

    async def unwrap_or_else_await(self, default: AsyncNullary[U]) -> U:
        return await default()

    def or_raise(self, error: AnyError) -> Never:
        raise error

    def or_raise_with(self, error: Nullary[AnyError]) -> Never:
        raise error()

    async def or_raise_with_await(self, error: AsyncNullary[AnyError]) -> Never:
        raise await error()

    def inspect(self, function: Inspect[T]) -> Null:
        return self

    async def inspect_await(self, function: AsyncInspect[T]) -> Null:
        return self

    def map(self, function: Unary[T, U]) -> Null:
        return self

    def map_or(self, default: U, function: Unary[T, U]) -> U:
        return default

    def map_or_else(self, default: Nullary[U], function: Unary[T, U]) -> U:
        return default()

    async def map_or_else_await(self, default: AsyncNullary[U], function: Unary[T, U]) -> U:
        return await default()

    async def map_await(self, function: AsyncUnary[T, U]) -> Null:
        return self

    async def map_await_or(self, default: U, function: AsyncUnary[T, U]) -> U:
        return default

    async def map_await_or_else(self, default: Nullary[U], function: AsyncUnary[T, U]) -> U:
        return default()

    async def map_await_or_else_await(
        self, default: AsyncNullary[U], function: AsyncUnary[T, U]
    ) -> U:
        return await default()

    def ok_or(self, error: E) -> Err[E]:
        return Err(error)

    def ok_or_else(self, error: Nullary[E]) -> Err[E]:
        return Err(error())

    async def ok_or_else_await(self, error: AsyncNullary[E]) -> Err[E]:
        return Err(await error())

    def iter(self) -> Iterator[Never]:
        return empty()

    def async_iter(self) -> AsyncIterator[Never]:
        return async_empty()

    def and_then(self, function: Unary[T, Option[U]]) -> Null:
        return self

    async def and_then_await(self, function: AsyncUnary[T, Option[U]]) -> Null:
        return self

    def filter(self, predicate: Predicate[T]) -> Null:
        return self

    async def filter_await(self, predicate: AsyncPredicate[T]) -> Null:
        return self

    def or_else(self, default: Nullary[Option[T]]) -> Option[T]:
        return default()

    async def or_else_await(self, default: AsyncNullary[Option[T]]) -> Option[T]:
        return await default()

    def xor(self, option: Option[T]) -> Option[T]:
        return option

    def zip(self, option: Option[U]) -> Null:
        return self

    def zip_with(self, option: Option[U], function: Binary[T, U, V]) -> Null:
        return self

    async def zip_with_await(self, option: Option[U], function: AsyncBinary[T, U, V]) -> Null:
        return self

    def unzip(self) -> Tuple[Null, Null]:
        return self, self

    def contains(self, value: U) -> Literal[False]:
        return False

    def early(self) -> Never:
        raise EarlyOption()

Some

Bases: OptionProtocol[T]

Some[T] variant of Option[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
@final
@frozen()
class Some(OptionProtocol[T]):
    """[`Some[T]`][wraps.option.Some] variant of [`Option[T]`][wraps.option.Option]."""

    value: T

    def __repr__(self) -> str:
        return wrap_repr(self, self.value)

    @classmethod
    def create(cls, value: U) -> Some[U]:
        return cls(value)  # type: ignore[arg-type, return-value]

    def is_some(self) -> Literal[True]:
        return True

    def is_some_and(self, predicate: Predicate[T]) -> bool:
        return predicate(self.value)

    async def is_some_and_await(self, predicate: AsyncPredicate[T]) -> bool:
        return await predicate(self.value)

    def is_null(self) -> Literal[False]:
        return False

    def expect(self, message: str) -> T:
        return self.value

    def extract(self) -> T:
        return self.value

    def unwrap(self) -> T:
        return self.value

    def unwrap_or(self, default: T) -> T:  # type: ignore[misc]
        return self.value

    def unwrap_or_else(self, default: Nullary[T]) -> T:
        return self.value

    def or_raise(self, error: AnyError) -> T:
        return self.value

    def or_raise_with(self, error: Nullary[AnyError]) -> T:
        return self.value

    async def or_raise_with_await(self, error: AsyncNullary[AnyError]) -> T:
        return self.value

    async def unwrap_or_else_await(self, default: AsyncNullary[T]) -> T:
        return self.value

    def inspect(self, function: Inspect[T]) -> Some[T]:
        function(self.value)

        return self

    async def inspect_await(self, function: AsyncInspect[T]) -> Some[T]:
        await function(self.value)

        return self

    def map(self, function: Unary[T, U]) -> Some[U]:
        return self.create(function(self.value))

    def map_or(self, default: U, function: Unary[T, U]) -> U:
        return function(self.value)

    def map_or_else(self, default: Nullary[U], function: Unary[T, U]) -> U:
        return function(self.value)

    async def map_or_else_await(self, default: AsyncNullary[U], function: Unary[T, U]) -> U:
        return function(self.value)

    async def map_await(self, function: AsyncUnary[T, U]) -> Some[U]:
        return self.create(await function(self.value))

    async def map_await_or(self, default: U, function: AsyncUnary[T, U]) -> U:
        return await function(self.value)

    async def map_await_or_else(self, default: Nullary[U], function: AsyncUnary[T, U]) -> U:
        return await function(self.value)

    async def map_await_or_else_await(
        self, default: AsyncNullary[U], function: AsyncUnary[T, U]
    ) -> U:
        return await function(self.value)

    def ok_or(self, error: E) -> Ok[T]:
        return Ok(self.value)

    def ok_or_else(self, error: Nullary[E]) -> Ok[T]:
        return Ok(self.value)

    async def ok_or_else_await(self, error: AsyncNullary[E]) -> Ok[T]:
        return Ok(self.value)

    def iter(self) -> Iterator[T]:
        return once(self.value)

    def async_iter(self) -> AsyncIterator[T]:
        return async_once(self.value)

    def and_then(self, function: Unary[T, Option[U]]) -> Option[U]:
        return function(self.value)

    async def and_then_await(self, function: AsyncUnary[T, Option[U]]) -> Option[U]:
        return await function(self.value)

    def filter(self, predicate: Predicate[T]) -> Option[T]:
        return self if predicate(self.value) else NULL

    async def filter_await(self, predicate: AsyncPredicate[T]) -> Option[T]:
        return self if await predicate(self.value) else NULL

    def or_else(self, default: Nullary[Option[T]]) -> Some[T]:
        return self

    async def or_else_await(self, default: AsyncNullary[Option[T]]) -> Some[T]:
        return self

    def xor(self, option: Option[T]) -> Option[T]:
        return self if is_null(option) else NULL

    @overload
    def zip(self, option: Null) -> Null: ...

    @overload
    def zip(self, option: Some[U]) -> Some[Tuple[T, U]]: ...

    @overload
    def zip(self, option: Option[U]) -> Option[Tuple[T, U]]: ...

    def zip(self, option: Option[U]) -> Option[Tuple[T, U]]:
        return self.create((self.value, option.value)) if is_some(option) else NULL

    @overload
    def zip_with(self, option: Null, function: Binary[T, U, V]) -> Null: ...

    @overload
    def zip_with(self, option: Some[U], function: Binary[T, U, V]) -> Some[V]: ...

    @overload
    def zip_with(self, option: Option[U], function: Binary[T, U, V]) -> Option[V]: ...

    def zip_with(self, option: Option[U], function: Binary[T, U, V]) -> Option[V]:
        return self.create(function(self.value, option.value)) if is_some(option) else NULL

    @overload
    async def zip_with_await(self, option: Null, function: AsyncBinary[T, U, V]) -> Null: ...

    @overload
    async def zip_with_await(self, option: Some[U], function: AsyncBinary[T, U, V]) -> Some[V]: ...

    @overload
    async def zip_with_await(
        self, option: Option[U], function: AsyncBinary[T, U, V]
    ) -> Option[V]: ...

    async def zip_with_await(self, option: Option[U], function: AsyncBinary[T, U, V]) -> Option[V]:
        return self.create(await function(self.value, option.value)) if is_some(option) else NULL

    def unzip(self: Some[Tuple[U, V]]) -> Tuple[Some[U], Some[V]]:
        u, v = self.value

        return self.create(u), self.create(v)

    def contains(self, value: U) -> bool:
        return self.value == value

    def early(self) -> T:
        return self.value

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
@final
@frozen()
class WrapOption(Generic[A]):
    """Wraps functions returning `T` into functions returning
    [`Option[T]`][wraps.option.Option].

    Errors are handled via returning [`NULL`][wraps.option.NULL] on `error` of
    [`error_types`][wraps.option.WrapOption.error_types], wrapping the resulting
    `value` into [`Some(value)`][wraps.option.Some].
    """

    error_types: ErrorTypes[A]
    """The error types to handle. See [`ErrorTypes[A]`][wraps.errors.ErrorTypes]."""

    def __call__(self, function: Callable[P, T]) -> OptionCallable[P, T]:
        @wraps(function)
        def wrap(*args: P.args, **kwargs: P.kwargs) -> Option[T]:
            try:
                return Some(function(*args, **kwargs))

            except self.error_types.extract():
                return NULL

        return wrap

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
@final
@frozen()
class WrapOptionAwait(Generic[A]):
    """Wraps asynchronous functions returning `T` into functions returning
    [`Option[T]`][wraps.option.Option].

    Errors are handled via returning [`NULL`][wraps.option.NULL] on `error` of
    [`error_types`][wraps.option.WrapOptionAwait.error_types], wrapping the resulting
    `value` into [`Some(value)`][wraps.option.Some].
    """

    error_types: ErrorTypes[A]
    """The error types to handle. See [`ErrorTypes[A]`][wraps.errors.ErrorTypes]."""

    def __call__(self, function: AsyncCallable[P, T]) -> OptionAsyncCallable[P, T]:
        @wraps(function)
        async def wrap(*args: P.args, **kwargs: P.kwargs) -> Option[T]:
            try:
                return Some(await function(*args, **kwargs))

            except self.error_types.extract():
                return NULL

        return wrap

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
def is_some(option: Option[T]) -> TypeIs[Some[T]]:
    """This is the same as [`Option.is_some`][wraps.option.OptionProtocol.is_some],
    except it works as a *type guard*.
    """
    return option.is_some()

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
def is_null(option: Option[T]) -> TypeIs[Null]:
    """This is the same as [`Option.is_null`][wraps.option.OptionProtocol.is_null],
    except it works as a *type guard*.
    """
    return option.is_null()

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
def wrap_optional(optional: Optional[T]) -> Option[T]:
    """Wraps [`Optional[T]`][typing.Optional] into [`Option[T]`][wraps.option.Option].

    If the argument is [`None`][None], [`NULL`][wraps.option.NULL] is returned.
    Otherwise the `value` (of type `T`) is wrapped into [`Some(value)`][wraps.option.Some].

    Arguments:
        optional: The optional value to wrap.

    Returns:
        The wrapped option.
    """
    return NULL if optional is None else Some(optional)

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 WrapOption[A] decorator created.

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
def wrap_option_on(head: Type[A], *tail: Type[A]) -> WrapOption[A]:
    """Creates [`WrapOption[A]`][wraps.option.WrapOption] decorators.

    This function enforces at least one error type to be provided.

    Example:
        ```python
        @wrap_option_on(ValueError)
        def parse(string: str) -> int:
            return int(string)

        assert parse("256").is_some()
        assert parse("uwu").is_null()
        ```

    Arguments:
        head: The head of the error types to handle.
        *tail: The tail of the error types to handle.

    Returns:
        The [`WrapOption[A]`][wraps.option.WrapOption] decorator created.
    """
    return WrapOption(ErrorTypes[A].from_head_and_tail(head, *tail))

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 WrapOptionAwait[A] decorator created.

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
def wrap_option_await_on(head: Type[A], *tail: Type[A]) -> WrapOptionAwait[A]:
    """Creates [`WrapOptionAwait[A]`][wraps.option.WrapOptionAwait] decorators.

    This function enforces at least one error type to be provided.

    Example:
        ```python
        @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()
        ```

    Arguments:
        head: The head of the error types to handle.
        *tail: The tail of the error types to handle.

    Returns:
        The [`WrapOptionAwait[A]`][wraps.option.WrapOptionAwait] decorator created.
    """
    return WrapOptionAwait(ErrorTypes[A].from_head_and_tail(head, *tail))