Command Line INterpreter with fixes
This commit is contained in:
parent
62cb2bb8b7
commit
576a3565f7
14 changed files with 384 additions and 95 deletions
|
|
@ -188,17 +188,20 @@ namespace tp {
|
|||
|
||||
explicit operator alni() {
|
||||
alni out;
|
||||
return Logic::convertStringToValue(read(), out);
|
||||
Logic::convertStringToValue(read(), out);
|
||||
return out;
|
||||
}
|
||||
|
||||
explicit operator alnf() {
|
||||
alnf out;
|
||||
return Logic::convertStringToValue(read(), out);
|
||||
Logic::convertStringToValue(read(), out);
|
||||
return out;
|
||||
}
|
||||
|
||||
explicit operator bool() {
|
||||
bool out;
|
||||
return Logic::convertStringToValue(read(), out);
|
||||
Logic::convertStringToValue(read(), out);
|
||||
return out;
|
||||
}
|
||||
|
||||
Index size() const {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue