Tuple items (representing structs) are regarded as atoms.
(lst)
| 266 | # ====================================================================== |
| 267 | |
| 268 | def atomp(lst): |
| 269 | """Tuple items (representing structs) are regarded as atoms.""" |
| 270 | return not isinstance(lst, list) |
| 271 | |
| 272 | def listp(lst): |
| 273 | return isinstance(lst, list) |
no outgoing calls
no test coverage detected
searching dependent graphs…