2025-07-25 15:23:51 +03:00
2025-07-23 10:36:50 +03:00
2025-07-23 10:36:50 +03:00
2025-07-25 15:23:51 +03:00
2025-07-23 10:36:50 +03:00
2025-04-08 22:39:32 +03:00
2025-07-23 10:36:50 +03:00
2025-07-23 10:37:01 +03:00
2025-07-23 10:37:01 +03:00
2025-07-23 10:36:50 +03:00
2025-07-17 15:16:40 +03:00

iterables-js

A data structures library based on iterators, inspired by libstdc++

Operators

Operator Naming
+= add
-= sub
++obj inc
--obj dec
*= mul
/= div
%= mod
== eq
!= neq
< a.cmp(b) < 0
> a.cmp(b) > 0
<= a.cmp(b) <= 0
>= a.cmp(b) >= 0
&& and
= const & copy
= && move
*obj deref
&obj ref
obj[] get
obj[]=smth set
|| or
! not
& band
| bor
^ bxor
~ bnot
<< shl
>> shr
() call
, comma
obj++ X
obj-- X
-> X
+ X
- X
* X
/ X
% X
&= X
|= X
^= X
<<= X
>>= X
Description
No description provided
Readme 267 KiB
Languages
JavaScript 99.1%
Makefile 0.9%