interoptopus_csharp 0.16.0-alpha.15

The C# backend for Interoptopus.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc(hidden)]
//! The core C# language model we understand (types, functions, ...).

pub mod constant;
pub mod functions;
mod id;
pub mod meta;
pub mod pattern;
#[cfg(any(feature = "unstable-plugins", docsrs))]
pub mod plugin;
pub mod service;
pub mod types;

pub use id::{ConstantId, FunctionId, ServiceId, TypeId};