newLISP Fan Club

Forum => newLISP in the real world => Topic started by: jopython on November 25, 2014, 04:36:27 PM

Title: How to determine type of variable/value?
Post by: jopython on November 25, 2014, 04:36:27 PM
The newlisp manual has predicates.

But I like to know if there is there a builtin function to find out the type of a symbol/variable/defn which I can use such as

eg:



(type x) => "list"
(type n) => "integer"
etc...
Title: Re: How to determine type of variable/value?
Post by: ryuo on November 25, 2014, 06:34:35 PM
There is no built-in function that I know of that can return the type of any newLISP expression. At best, you may be able to construct your own function that uses the existing predicate functions to return a string that is unique for each cell type.
Title: Re: How to determine type of variable/value?
Post by: zhanglong on November 26, 2014, 03:14:55 AM
(define types '("nil" "true" "int" "float" "string" "symbol" "context"
    "primitive" "import" "ffi" "quote" "expression" "lambda" "fexpr" "array"
    "dyn_symbol"))

(define (typeof v)
    (types (& 0xf ((dump v) 1))))


the types defined in newlisp.h
Title: Re: How to determine type of variable/value?
Post by: jopython on November 26, 2014, 11:14:56 AM
Thanks everyone.
Title: Re: How to determine type of variable/value?
Post by: IVShilov on March 17, 2019, 04:03:53 PM
Quote from: "ryuo"There is no built-in function that I know of that can return the type of any newLISP expression. At best, you may be able to construct your own function that uses the existing predicate functions to return a string that is unique for each cell type.

Despite of
(define (type x)
  (let (types
         '("bool" "bool" "integer" "float"
           "string" "symbol" "context" "primitive"
           "import-simple" "import-libffi" "quote" "list" "lambda"
           "fexpr" "array"))
    (types (& 0xf ((dump x) 1)))))

I have tryed to write such function, but find out that
(lambda? lambda?) -> nil
and number of other interesting paradoxes.