rue-types 0.10.0

A type system for the Rue programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
use indexmap::IndexMap;

use crate::TypeId;

#[derive(Debug, Clone)]
pub struct FunctionType {
    pub params: IndexMap<String, TypeId>,
    pub nil_terminated: bool,
    pub ret: TypeId,
}