#
generic
Here are 615 public repositories matching this topic...
Funktional generic type-level programming in Rust: HList, Coproduct, Generic, LabelledGeneric, Validated, Monoid and friends.
rust
generic
fp
generic-programming
lenses
hlist
type-level
type-level-programming
validated
labelled-generic
coproduct
datatype-generic-programming
-
Updated
Jul 17, 2021 - Rust
Type-safe declarative table views.
-
Updated
Jan 11, 2021 - Swift
A library of generic intrusive data structures and algorithms in ANSI C
c
linked-list
stack
queue
algorithms
datastructures
generic
hash-functions
collections
red-black-tree
hashtable
c89
ansi-c
iterative-algorithms
intrusive
cdsa
-
Updated
Jan 21, 2018 - C
Library of generic and type safe containers in pure C language (C99 or C11) for a wide collection of container (comparable to the C++ STL).
c
set
bitset
json
list
tree
stack
queue
algorithms
string
dictionary
tuples
array
generic
priority-queue
hashmap
collections
lock-free
variant
memory-pool
-
Updated
Jul 16, 2021 - C
Generic Repository Pattern for .net core
-
Updated
May 13, 2021 - C#
Simple generic GUI widget toolkit for SDL2
-
Updated
Apr 1, 2021 - C
Bears for coala
-
Updated
Jul 16, 2021 - Python
An example of generic repository implementation using the MongoDB C# Sharp 2.0 driver (async)
-
Updated
Mar 15, 2021 - C#
Common libraries and data structures for C.
c
socket
library
linked-list
stack
queue
algorithms
timer
logger
vector
thread
generic
data-structures
hashmap
collections
heap
-
Updated
Jul 18, 2021 - C
[ICCV 2021] Focal Frequency Loss for Image Reconstruction and Synthesis
image-reconstruction
generic
generative-adversarial-network
gan
autoencoder
image-generation
spade
pix2pix
frequency-domain
frequency-analysis
loss
variational-autoencoder
generative-models
image-synthesis
complementary
loss-function
stylegan2
iccv2021
-
Updated
Jul 23, 2021
Eval is a lightweight interpreter framework written in Swift, evaluating expressions at runtime
swift
language
template
interpreter
compiler
pattern-matching
template-language
generic
eval
evaluate-expressions
-
Updated
Jul 12, 2021 - Swift
A generic small reusable components for data source implementation for UITableView/UICollectionView in Swift.
swift
uitableview
uicollectionview
xcode
clean-code
generic
datasource
composable-components
light-view-controller
-
Updated
Mar 19, 2020 - Swift
kijujjav
commented
Nov 11, 2020
I see that in unit test proj, contracts\ForgeSchemaValidationRules.json is used to validate the schema, similarly is there a public API that users can make use of to validate schemas?
Generic Linked Data browser and UX component framework. Apache license.
client
ui
browser
stylesheets
linked-data
rdf
ux
docker-image
xslt
generic
semantic-web
knowledge-graph
ui-kit
ui-components
ui-widgets
ui-framework
rich-client
-
Updated
Jul 28, 2021 - JavaScript
m4b
commented
Sep 6, 2019
this was a terrible mistake and should never have been done (by me).
A generic interval tree implementation in C#
-
Updated
May 3, 2021 - C#
Generic Auto-Updater: a robust, user-friendly, clean and efficient Auto-Updater to maintain any client patched.
-
Updated
Jul 26, 2020 - C#
Generic Code for Go
-
Updated
Apr 26, 2018 - Go
Modern C++ generic header-only template library.
-
Updated
Jan 10, 2021 - C++
High performance algorithms in C#: SIMD/SSE, multi-core and faster
linq
sorting
algorithm
csharp
high-performance
fill
sum
parallel
sse
generic
sort
simd
high-performance-computing
sorting-algorithms
simd-instructions
radix-sort
summation
c-shap
algorithm-performance
-
Updated
Apr 10, 2021 - C#
A library to perform generic seralization and deserialization of QObjects from and to JSON and CBOR
-
Updated
Feb 20, 2020 - C++
Fully customizable Card View Components for React Native.
-
Updated
Jul 22, 2021 - TypeScript
Improve this page
Add a description, image, and links to the generic topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the generic topic, visit your repo's landing page and select "manage topics."
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[]
.