Exemple #1
0
 public IEnumerable <KeyValuePair <bool, string> > GetRegisteredBoolLiterals(Function function)
 {
     return(registeredBools.GetValues(function));
 }
Exemple #2
0
 public IEnumerable <KeyValuePair <int, string> > GetRegisteredIntLiterals(Function function)
 {
     return(registeredInts.GetValues(function));
 }
Exemple #3
0
 public IEnumerable <KeyValuePair <double, string> > GetRegisteredFloatLiterals(Function function)
 {
     return(registeredFloats.GetValues(function));
 }
Exemple #4
0
 public IEnumerable <KeyValuePair <string, string> > GetRegisteredStringLiterals(Function function)
 {
     return(registeredStrings.GetValues(function));
 }