All Projects → davnavr → FSharpWrap

davnavr / FSharpWrap

Licence: Apache-2.0 license
Utility that automatically generates F# modules and functions based on your F# project file's references

Programming Languages

F#
602 projects
C#
18002 projects

Projects that are alternatives of or similar to FSharpWrap

bound
Data-binding made easy
Stars: ✭ 21 (+50%)
Mutual labels:  work-in-progress
qp-arduino
QP real-time embedded frameworks/RTOS for Arduino (AVR and SAM)
Stars: ✭ 37 (+164.29%)
Mutual labels:  code-generation
consul-registration-hook
Hook that can be used for synchronous registration and deregistration in Consul discovery service on Kubernetes or Mesos cluster with Allegro executor
Stars: ✭ 17 (+21.43%)
Mutual labels:  work-in-progress
Python3Generator
A toolkit to generate Python 3 source code from Pharo.
Stars: ✭ 25 (+78.57%)
Mutual labels:  code-generation
EasyEE-Auto
EasyEE 自动化代码生成器。EasyEE Automated code generator.
Stars: ✭ 39 (+178.57%)
Mutual labels:  code-generation
kobby
Kobby is a codegen plugin of Kotlin DSL Client by GraphQL schema. The generated DSL supports execution of complex GraphQL queries, mutation and subscriptions in Kotlin with syntax similar to native GraphQL syntax.
Stars: ✭ 52 (+271.43%)
Mutual labels:  code-generation
PS OPNsense
PowerShell Module for OPNsense REST api
Stars: ✭ 27 (+92.86%)
Mutual labels:  work-in-progress
AUXify
Introduces macro/meta annotations @ aux, @ self, @ instance, @ apply, @ delegated, @ syntax and String-based type class LabelledGeneric
Stars: ✭ 25 (+78.57%)
Mutual labels:  code-generation
vonuvoli-scheme
vonuvoli Scheme -- an R7RS interpreter written in Rust focused on systems programming and scripting (i.e. processes, file-system, etc.) with performance and safety in mind
Stars: ✭ 81 (+478.57%)
Mutual labels:  work-in-progress
tiles
Programmatic code generation
Stars: ✭ 78 (+457.14%)
Mutual labels:  code-generation
dynamic.yaml
DEPRECATED: YAML-based data transformations
Stars: ✭ 14 (+0%)
Mutual labels:  code-generation
gamma
An Eclipse-based modeling framework for the component-based design and analysis of reactive systems
Stars: ✭ 21 (+50%)
Mutual labels:  code-generation
islpy
Python wrapper for isl, an integer set library
Stars: ✭ 58 (+314.29%)
Mutual labels:  code-generation
vscode-cmantic
C/C++ code generation for VS Code: Generate Definitions, Getters, Setters, and much more.
Stars: ✭ 61 (+335.71%)
Mutual labels:  code-generation
nmodl
Code Generation Framework For NEURON MODeling Language
Stars: ✭ 42 (+200%)
Mutual labels:  code-generation
ParNMPC
A Parallel Optimization Toolkit for Nonlinear Model Predictive Control (NMPC)
Stars: ✭ 173 (+1135.71%)
Mutual labels:  code-generation
Sweet.apex
Next Generation of Apex Development
Stars: ✭ 43 (+207.14%)
Mutual labels:  code-generation
toast
Plugin-driven CLI utility for code generation using Go source as IDL
Stars: ✭ 52 (+271.43%)
Mutual labels:  code-generation
Beef
Business Entity Execution Framework
Stars: ✭ 95 (+578.57%)
Mutual labels:  code-generation
sanzo-wada
🎨 Interactive version of Sanzo Wada's - "A Dictionary of Color Combinations"
Stars: ✭ 139 (+892.86%)
Mutual labels:  work-in-progress

FSharpWrap

Build Status Nuget GitHub top language Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.

Utility that automatically generates F# modules, functions, and active patterns based on your F# project file's references.

Usage

For information on how to use and configure FSharpWrap, see the docs.

Example

A dependency containing the following C# class:

public class ExampleDictionary<TKey, TValue>
{
    public void SetItem(TKey key, TValue value);
}

Could then be used in the following way:

let myDict = new ExampleDictionary<string, int>()
ExampleDictionary.setItem "hello" 5 myDict
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].