Cleaner sum type for TypeScript.
Build chainable fluent interfaces the easy way... with a freakin' chainsaw!
ContractCase HTTP plugin CaseExample definition DSL
Types for writing the definition DSL for plugins for the ContractCase test framework
Definition DSL components for the ContractCase contract testing suite
ContractCase core function plugin DSL
Plugin framework for writing plugins for the ContractCase test framework
Tiny internal DSL which allows invocation of different functionality depending on SemVer match.
Default linter plugin for oas-validator
it performs a linear sum assignment even if the cost matrix is rectangular.
Get the average value in an array
Calculate a scaled Lanczos sum for the approximation of the gamma function.
Compute the sum of an infinite series.
Summarize package information
Blazing fast unique hash generator
TypeScript definitions for hash-sum
Distance and similarity functions to compare vectors
Javascript implementation of ANTLR Grammar for the OpenFGA DSL and parser from and to the OpenFGA JSON Syntax
Calculate the Lanczos sum for the approximation of the gamma function.
A JavaScript implementation of the elasticsearch Query DSL
Gets the sum of values
Generates ADF and PM schemas
Recursive Language Model - Process documents larger than LLM context windows
An elasticsearch query body builder.
Lumberjack is best summed up as a generic DSL for constructing object trees. It works great for configuration files, for generating a tree of configuration objects for later reflection or what-not. But in reality you could use it for whatever you're willing to dream up.
ruby enterprise language. Run excel-like formulas ruby code. E.g. SUM(MAP(KEY_ACCOUNTS(), revenue))
A compact DSL to let you declare sum data types and define safe functions on them.
Expressive, chainable DSL for SQL window functions (ROW_NUMBER, RANK, LAG, LEAD, SUM, etc.) that integrates naturally with ActiveRecord query methods.
== Description A Rack compatible JSON-RPC2 server domain specific language (DSL) - allows JSONRPC APIs to be defined as mountable Rack applications with inline documentation, authentication and type checking. e.g. class Calculator < JSONRPC2::Interface title "JSON-RPC2 Calculator" introduction "This interface allows basic maths calculations via JSON-RPC2" auth_with JSONRPC2::BasicAuth.new({'user' => 'secretword'}) section 'Simple Ops' do desc 'Multiply two numbers' param 'a', 'Number', 'a' param 'b', 'Number', 'b' result 'Number', 'a * b' def mul args args['a'] * args['b'] end desc 'Add numbers' example "Calculate 1 + 1 = 2", :params => { 'a' => 1, 'b' => 1}, :result => 2 param 'a', 'Number', 'First number' param 'b', 'Number', 'Second number' optional 'c', 'Number', 'Third number' result 'Number', 'a + b + c' def sum args val = args['a'] + args['b'] val += args['c'] if args['c'] val end end end