enumerable
There are 154 repositories under enumerable topic.
onixjs/enumerable
Wrapper class for JavaScript Generators, provides operations as filter, map, reduce, etc.
daudi13/Enumerable
In this project we use a module inside the class. We created a class my_list and a module my_enumerable. The module my_enumerable implements a subset of the functionality of Enumerable.
LauraBeatris/odd-list-filter
Elixir algorithm exercise to filter odd numbers from a given string list and return its quantity
stdlib-js/utils-inherited-keys
Return an array of an object's inherited enumerable property names.
stdlib-js/utils-nonenumerable-property-names
Return an array of an object's own non-enumerable property names.
thadeu/acts_enum_translable
💎 ActiveRecord::Enum Translate with i18n
xeinebiu/ts-iterable
Iterables, streams for typescript
ahmetbozaci/Enumerable_Methods
Rebuild enumerable methods with ruby
csrakowski/CSRakowski.AsyncStreamsPreparations
Quick helper library containing interfaces and classes to help you prepare for the C# 8 Async Streams feature.
DevL/Pyby
A library implementing certain Ruby-like behaviours in Python.
ehmicky/redefine-property
Better `Object.defineProperty()`
Emzi0767/DotNet-Operator-List
An implementation of a generic collection which supports Python-like operations.
FriendlyCSharp/Databases
A library of cross platform C# data structures. Generic B-tree written in C#, which can be replaced with NoSQL database stored in the memory of discharge requirements in real-time (Firebase, Redis Cache, SAP HANA, Exadata, OLTP, etc.).
hoshixlily/ts-collections
A simple data structures library for TypeScript
joomoraes/Contract_Work_EnumType_CSharp
Enumerator Type In Csharp Example
mstn/duality
Some coding experiments with Meijer's duality (WIP)
Narumikazuchi/Collections
This project was inspired by the source code for the system intern immutable collections. It expands on the idea of a strong enumerable with a strong enumerator instead of the usual interface. This improves performance in foreach-loops massively the bigger the dataset gets. Additionally adds some minor extension methods for all collections.
patrickroberts/enumerable-ts
A port of System.Linq.Enumerable from the .NET framework to TypeScript
ryanmorr/reduce
Array's reduce for all iterable and enumerable objects
stdlib-js/assert-is-nonenumerable-property
Test if an object's own property is non-enumerable.
stdlib-js/utils-common-keys-in
Return the common own and inherited property names of two or more objects.
stdlib-js/utils-define-configurable-write-only-accessor
Define a configurable write-only accessor.
stdlib-js/utils-entries
Return an array of an object's own enumerable property key-value pairs.
stdlib-js/utils-entries-in
Return an array of an object's own and inherited enumerable property key-value pairs.
stdlib-js/utils-enumerable-properties
Return an array of an object's own enumerable property names and symbols.
stdlib-js/utils-for-in
Invoke a function for each own and inherited enumerable property of an object.
stdlib-js/utils-inherited-nonenumerable-property-symbols
Return an array of an object's inherited non-enumerable symbol properties.
stdlib-js/utils-keys-in
Return an array of an object's own and inherited enumerable property names.
stdlib-js/utils-nonenumerable-properties
Return an array of an object's own non-enumerable property names and symbols.
stdlib-js/utils-nonenumerable-property-names-in
Return an array of an object's own and inherited non-enumerable property names.
stdlib-js/utils-nonenumerable-property-symbols-in
Return an array of an object's own and inherited non-enumerable symbol properties.
stdlib-js/utils-properties
Return an array of an object's own enumerable and non-enumerable property names and symbols.
suntong/enum
Go enum and its string representation
WozSoftware/Woz.Linq
Extra Linq functions that I feel are missing from the standard MS implementation
KanzaTahreem/Enumerable
In this project, we learned to use a module inside a class.
skyv26/Ruby-Enumerable
In Ruby, we call an object enumerable when it describes a set of items and a method to loop over each of them. The built-in enumerables get their enumeration features by including the Enumerable module, which provides methods like #include?, #count, #map, #select and #uniq.