( set_operation )
凡例
| → | 対応コードあり |
| → | 直接対応していないが代替の書き方あり |
| → | 対応コードなし |
| - | 未確認 |
| ( .. ) | ローカライズまだ |
| Example | Python pytest |
C++ GoogleTest |
Swift Testing |
Kotlin jUnit |
Bash bats |
|---|---|---|---|---|---|
| ( union ) | a | b | set_union(...) | - | - | - |
| ( union_destructive ) | a |= b | - | - | - | - |
| ( intersection ) | a & b | set_intersection(...) | - | - | - |
| ( difference ) | a - b | set_difference(...) | - | - | - |
| ( add ) | add() | insert() | - | - | - |
| ( is_subset ) | a.issubset(b) | std::includes(...) | - | - | - |