Table of Contents
Native! values represent external functions that are written in Red/System for the sake of performance or convenience (e.g. accessing OS APIs). Natives are used like normal function values.
Native! is a member of the following typesets: any-function!, default!
Native values can be compared for sameness and equality with same?, ==, equal?, strict-equal?, not-equal?, <>.
Use native? to check if a value is of the native! datatype.
>> native? :do
== trueUse type? to return the datatype of a given value.
>> type? :do
== native!