class Cruml::Entities::ArgsInfo

Overview

This consists of obtaining information about the reflected arguments.

Defined in:

entities/args_info.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(name : String, type : String) #

Argument name and type must be passed as parameters.

Cruml::Entities::ArgsInfo.new("first_name", "String")
Cruml::Entities::ArgsInfo.new("last_name", "String")
Cruml::Entities::ArgsInfo.new("age", "Int32")

[View source]

Instance Method Detail

def name : String #

Argument name.


[View source]
def type : String #

Argument type.


[View source]