2025-07-22 19:24:03 +03:00
2025-04-08 21:08:25 +03:00
2025-04-08 22:39:32 +03:00
2025-07-22 19:24:03 +03:00
2025-07-22 19:24:03 +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
|| 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%