5 रिपॉजिटरी
Operations that modify the value associated with a key in a map by applying a function to the existing value.
Distinct from Function-as-a-Service Platforms: Distinct from Function-as-a-Service Platforms: focuses on in-language map value mutation, not cloud function lifecycle management.
Explore 5 awesome GitHub repositories matching devops & infrastructure · Map Value Updaters. Refine with filters or upvote what's useful.
pg is a PostgreSQL object-relational mapper (ORM) for Go that maps Go structs to database tables and provides a fluent query builder for constructing SQL statements programmatically. At its core, it automatically generates CREATE TABLE statements from Go struct definitions using struct tags and naming conventions, and builds queries through method chaining with placeholder-based parameter binding to prevent SQL injection. The library distinguishes itself through relation-aware join generation that automatically constructs JOIN clauses for has-one, has-many, many-to-many, and polymorphic assoc
Updates rows in a table using a map of column names to values.
Carp is a statically typed Lisp compiler that compiles Lisp-like syntax directly to C source code, enabling seamless integration with existing C libraries and low-level system programming. It manages memory deterministically at compile time using ownership tracking and linear types, eliminating garbage collection pauses and runtime overhead while ensuring type safety through an inferred static type system. The language distinguishes itself through compile-time macro expansion and metaprogramming capabilities, allowing code generation and transformation before final binary output. It enforces
Provides map value update operations as part of its standard library data structure support.
This is a JavaScript immutable data library used to create objects and arrays that prevent direct mutation. It serves as an immutable state manager and object wrapper designed to ensure data consistency by blocking modifications while remaining compatible with standard JavaScript syntax. The library functions as a converter that transforms standard mutable data into frozen structures and can convert them back for local modifications. This allows for a workflow where data is switched between immutable and mutable versions to perform bulk edits before locking the state again. The project provi
Allows applying transformer functions to properties to calculate new values while maintaining immutability.
immutability-helper एक अपरिवर्तनीय (immutable) डेटा हेरफेर लाइब्रेरी और ऑब्जेक्ट उपयोगिता है जिसका उपयोग ऑब्जेक्ट्स और एरेज़ की संशोधित प्रतियां बनाने के लिए किया जाता है। यह एक कमांड-आधारित स्टेट मैनेजर और कार्यात्मक डेटा ट्रांसफॉर्मर के रूप में कार्य करता है जो यह सुनिश्चित करता है कि अपडेट के दौरान मूल सोर्स डेटा अपरिवर्तित रहे। यह लाइब्रेरी परिवर्तनों को निर्दिष्ट करने के लिए म्यूटेशन कमांड और डिस्क्रिप्टर के एक घोषणात्मक सेट का उपयोग करके खुद को अलग करती है। यदि म्यूटेशन प्रक्रिया के दौरान कोई वास्तविक परिवर्तन नहीं होता है तो यह मूल ऑब्जेक्ट संदर्भ लौटाकर संदर्भ समानता को संरक्षित करती है। यह नेस्टेड संरचनाओं को डीप क्लोन करने और ऑब्जेक्ट्स, एरेज़, मैप्स और सेट्स पर जटिल स्थिति म्यूटेशन करने की क्षमताएं प्रदान करती है। सिस्टम अपरिवर्तनीय ऑब्जेक्ट्स को मर्ज करने और प्लगेबल म्यूटेशन इंजन के माध्यम से कस्टम ट्रांसफॉर्मेशन लॉजिक लागू करने का समर्थन करता है।
Executes user-defined functions on specific values to produce new immutable versions of the data structure.
Returns is a functional programming library for Python that provides type-safe containers for managing state, error handling, and optionality. It serves as a monadic container library and a type-safe error handling framework, replacing traditional try-catch blocks and null checks with Result and Optional containers to treat exceptions as data. The project is distinguished by its use of a specialized Mypy static analysis plugin to validate functional pipelines and emulate higher kinded types. It provides mechanisms for isolating side effects through IO containers and offers a framework for typ
Applies pure functions to values inside containers via mapping and binding to produce updated containers.