Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which objects are atomic in Mathematica?

I am looking for a full list of atomic objects in Mathematica (for which AtomQ yields True).

I know about

Symbol
String
Integer
Real
Rational
Complex

SparseArray
BooleanFunction
Graph

Are there any others?

ref: http://reference.wolfram.com/mathematica/tutorial/BasicObjects.html

EDIT: Continually adding new symbols from answers to list above.

like image 345
Szabolcs Avatar asked May 11 '11 12:05

Szabolcs


1 Answers

It appears your list needs one more object to be complete:

In[520]:= f = BooleanFunction[30, 3];

In[521]:= AtomQ[f]

Out[521]= True
like image 185
Sasha Avatar answered Oct 14 '22 10:10

Sasha