value.inline.h 307 B

123456789101112131415
  1. #ifndef AFUN_VALUE_INLINE_H
  2. #define AFUN_VALUE_INLINE_H
  3. #include "value.h"
  4. namespace aFuncore {
  5. inline bool Function::isInfix() {
  6. return false;
  7. }
  8. inline bool CallBackVar::isCallBack(Inter &inter, Activation &activation) {
  9. return true;
  10. }
  11. };
  12. #endif //AFUN_VALUE_INLINE_H