PyoCollection
Bases: ,
Base trait for eager pyochain collections.
PyoCollection[T] is the shared trait for concrete, eager collections:
Seq, Vec, Set, SetMut, Dict.
It extends PyoIterable[T] and collections.abc.Collection[T] and provides
a few convenience methods like contains() and repeat().
This is equivalent to subclassing collections.abc.Collection[T] (this
trait already does), meaning any concrete subclass must implement the
required Collection dunder methods:
__iter____len____contains__
On top of the standard Collection protocol, it provides the additional
pyochain API (from PyoIterable, Pipeable, Checkable, plus the helpers
defined here).
Source code in src/pyochain/traits/_iterable.py
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 | |
contains(value)
Check if the Collection contains the specified value.
This is equivalent to using the in keyword directly on the Collection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
|
The value to check for existence. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
bool |
|
True if the value exists in the Collection, False otherwise. |
Example:
>>> import pyochain as pc
>>> data = pc.Dict({1: "a", 2: "b"})
>>> data.contains(1)
True
>>> data.contains(3)
False
Source code in src/pyochain/traits/_iterable.py
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 | |
is_empty()
Returns True if the Collection contains no elements.
Returns:
| Name | Type | Description |
|---|---|---|
bool |
|
|
Example:
>>> import pyochain as pc
>>> d = pc.Dict.new()
>>> d.is_empty()
True
>>> d.insert(1, "a")
NONE
>>> d.is_empty()
False
Source code in src/pyochain/traits/_iterable.py
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 | |
repeat(n=None)
Repeat the entire Collection n times (as elements) in an Iter.
If n is None, repeat indefinitely.
Warning
If n is None, this will create an infinite Iterator.
Be sure to use Iter.take() or Iter.slice() to limit the number of items taken.
See Also
Iter.cycle() to repeat the elements of the Iter indefinitely.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
|
Optional number of repetitions. |
None
|
Returns:
| Type | Description |
|---|---|
|
Iter[Self]: An |
Example:
>>> import pyochain as pc
>>> pc.Seq([1, 2]).repeat(3).collect()
Seq(Seq(1, 2), Seq(1, 2), Seq(1, 2))
>>> pc.Seq(("a", "b")).repeat(2).collect()
Seq(Seq('a', 'b'), Seq('a', 'b'))
>>> pc.Seq([0]).repeat().flatten().take(5).collect()
Seq(0, 0, 0, 0, 0)
Source code in src/pyochain/traits/_iterable.py
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 | |