|
| 1 | +#lang rhombus/scribble/manual |
| 2 | +@(import: |
| 3 | + "racket_names.rkt" open |
| 4 | + meta_label: |
| 5 | + rhombus open) |
| 6 | + |
| 7 | +@(def rhombus_doc = ModulePath'lib("rhombus/scribblings/reference/rhombus-reference.scrbl")') |
| 8 | +@(def racket_doc = ModulePath'lib("scribblings/reference/reference.scrbl")') |
| 9 | + |
| 10 | +@title(~tag: "data"){Common Run-Time Representations} |
| 11 | + |
| 12 | +Rhombus and Racket share the same or related representations for many |
| 13 | +basic forms of data: |
| 14 | + |
| 15 | +@itemlist( |
| 16 | + |
| 17 | + @item{Booleans are the same.} |
| 18 | + |
| 19 | + @item{Numbers are the same, including @tech(~doc: rhombus_doc){fixnums} |
| 20 | + and @tech(~doc: rhombus_doc){flonums}.} |
| 21 | + |
| 22 | + @item{Characters, strings, and byte strings are the same. Beware, |
| 23 | + however, that Racket strings are mutable by default, which satisfies |
| 24 | + Rhombus's @rhombus(ReadableString, ~annot) but not |
| 25 | + @rhombus(String, ~annot).} |
| 26 | + |
| 27 | + @item{Symbols and keywords. A keyword is written in shrubbery notation |
| 28 | + for Rhombus with a @litchar{~} prefix, and it is written in S-expression |
| 29 | + notation with a @litchar{#:} prefix, but the representation does not |
| 30 | + include that prefix.} |
| 31 | + |
| 32 | + @item{Functions, including functions with keyword arguments are the |
| 33 | + same. Note that a Racket keyword with non-alphabetic characters can be |
| 34 | + written in rhombus using @litchar("#{")…@litchar("}") notation, as in |
| 35 | + @rhombus(work(#{#:fast?}: #true)).} |
| 36 | + |
| 37 | + @item{Pairs are the same. Racket @tech(~doc: racket_doc){lists} are |
| 38 | + Rhombus @tech(~doc: rhombus_doc){pair lists}, Rhombus |
| 39 | + @tech(~doc: rhombus_doc){lists} correspond to |
| 40 | + @racketmod_racket_treelist, and Rhombus @tech(~doc: rhombus_doc){mutable |
| 41 | + lists} correspond to @racketmod_racket_mutable_treelist.} |
| 42 | + |
| 43 | + @item{Racket @tech(~doc: racket_doc){vectors} and Rhombus |
| 44 | + @tech(~doc: rhombus_doc){arrays} are the same, and boxes are the same in |
| 45 | + both.} |
| 46 | + |
| 47 | + @item{Racket @tech(~doc: racket_doc){hash tables} and Rhombus |
| 48 | + @tech(~doc: rhombus_doc){maps} are the same. Rhombus |
| 49 | + @tech(~doc: rhombus_doc){sets} are unrelated to any Racket data |
| 50 | + structure, although the implementation internally uses Racket hash |
| 51 | + tables.} |
| 52 | + |
| 53 | + @item{Racket @tech(~doc: racket_doc){sequences} and Rhombus |
| 54 | + @tech(~doc: rhombus_doc){sequences} are the same.} |
| 55 | + |
| 56 | + @item{The void value and end-of-file object are the same.} |
| 57 | + |
| 58 | + @item{Rhombus and Racket syntax objects are the same. A Rhombus syntax |
| 59 | + object encodes shrubbery structure within an S-expression syntax object |
| 60 | + as described in |
| 61 | + @secref(~doc: ModulePath'lib("shrubbery/scribblings/shrubbery.scrbl")', "parsed-rep").} |
| 62 | + |
| 63 | +) |
| 64 | + |
| 65 | +In many other cases, the Rhombus representation of an entity is a |
| 66 | +wrapper on a Racket representation. For example, a Rhombus |
| 67 | +@rhombus(Thread, ~class) object wraps a Racket thread object. In those |
| 68 | +case, a common convention within Rhombus is to provide access to the |
| 69 | +Racket representation through a @rhombus(handle) property, and sometimes |
| 70 | +a @rhombus(from_handle) function is provided to construct a Rhombus |
| 71 | +object wrapper for a suitable Racket value. |
| 72 | + |
| 73 | +Rhombus wrappers enable a dynamic @rhombus(.) operation to find methods |
| 74 | +and properties. Although dynamic @rhombus(.) works on some kinds of |
| 75 | +Racket values without a wrapper, such as strings and lists, it relies on |
| 76 | +built-in support by the @rhombus(.) operator. Rhombus has no safe and |
| 77 | +composable way to extend that built-in set. |
0 commit comments