Skip to content

Commit

Permalink
Test automatic build without rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
retodomax committed Aug 27, 2024
1 parent 1dea72c commit a9d912a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions 002-obj.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,14 @@
> * Everything that happens is a function call.
>
> --- John Chambers
## Inspect object

* `str()`: struction of object, get unsystematic overview
* `typeof()`: "low-level" type of an object
* `mode()`: storage mode of an object
- Determines how an object is stored
* `class()`: "high-level" class of object
- Determines what method is applied when passed to generic functions

`typeof()` and `mode()` are almost the same (at the same level) except that they use different names

0 comments on commit a9d912a

Please sign in to comment.