COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20210329061339/https://github.com/topics/tuple
Here are
85 public repositories
matching this topic...
coobjc provides coroutine support for Objective-C and Swift. We added await method、generator and actor model like C#、Javascript and Kotlin. For convenience, we added coroutine categories for some Foundation and UIKit API in cokit framework like NSFileManager, JSON, NSData, UIImage etc. We also add tuple support in coobjc.
Updated
May 29, 2020
Objective-C
ECMAScript proposal for the Record and Tuple value types. | Stage 2: it will change!
Updated
Feb 25, 2021
HTML
std::tuple like methods for user defined types without any macro or boilerplate code
LINQ to Objects for Java.
Updated
Mar 17, 2021
Java
The Art of Template MetaProgramming (TMP) in Modern C++♦️
A polyfill for the ECMAScript Record and Tuple proposal.
Updated
Mar 10, 2021
JavaScript
Immutable finite list objects with constant-time equality testing (===) and no memory leaks.
Updated
Sep 29, 2019
JavaScript
Updated
Oct 12, 2020
Java
Optimizing the memory layout of std::tuple
Permit Symbols as keys in WeakMaps and entries in WeakSets
pretty_print is a cross-platform library for a pretty print of various data.
Asp.Net Core Tuple Model Binder
Standard Generic Library (SGL) for Pascal using records with heap memory allocator and typed memory regions.
Updated
Mar 28, 2021
Pascal
Couple of language trigram utility functions
Updated
Mar 25, 2021
JavaScript
Harbol is a collection of data structure and miscellaneous libraries, similar in nature to C++'s Boost, STL, and GNOME's GLib
Functional programming for Java. Java Functional Interface that more simpler and easier to use (提供更简单更好用的Java函数式编程接口)
Updated
Mar 23, 2021
Java
Library of my favorite technologies, metaprogramming, allocators, concurrency
Various constructs inspired by the Rust programming language
Updated
Mar 19, 2021
Scala
A library that makes awaiting multiple tasks easy.
Updated
May 19, 2019
TypeScript
Tuple flattening for rust-lang.
Updated
Jan 24, 2019
Rust
Heterogeneous ranges for c++20
Small examples of Python 3 courses
Updated
Sep 21, 2020
Python
Console progress bar, splitstopwatch (debug-timer), null-annotations, CSV-reader and CSV-writer, various tools and data-structures.
Updated
Feb 14, 2018
Java
Python
🐍 Workshop on Language Basics, Constructs and introduction in Data Structures & Algorithms
👨💻 @WhatAfterCollege 🎓 .
Updated
Dec 22, 2020
Python
Python
🐍 Workshop on Language Basics, Constructs and introduction in Data Structures & Algorithms
👨💻 @WhatAfterCollege 🎓 .
Updated
Jul 19, 2020
Python
Improve this page
Add a description, image, and links to the
tuple
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
tuple
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
With TS 3.4 it became common practice to create tuples with
[a, b, c] as const. This is really convenient, however the resulting tuple isreadonly. It would be awesome to add support for these readonly tuples, right now I get errorreadonly (something) is not assignable to any[].