class Cruml::Entities::ArgsInfo
- Cruml::Entities::ArgsInfo
- Reference
- Object
Overview
This consists of obtaining information about the reflected arguments.
Defined in:
entities/args_info.crConstructors
-
.new(name : String, type : String)
Argument name and type must be passed as parameters.
Instance Method Summary
-
#name : String
Argument name.
-
#type : String
Argument type.
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")