diff options
author | Divay Prakash <divayprakash3@gmail.com> | 2018-10-27 16:17:59 +0530 |
---|---|---|
committer | Divay Prakash <divayprakash3@gmail.com> | 2018-10-27 16:17:59 +0530 |
commit | 3e6ff8f257422c7b9deb295bbf5b508245095363 (patch) | |
tree | b375e02bc639d18180aea659ece44f41235282de /smalltalk.html.markdown | |
parent | ec1111c156c7420a12c5967bbd659eb61582b9cb (diff) |
More fixes
Diffstat (limited to 'smalltalk.html.markdown')
-rw-r--r-- | smalltalk.html.markdown | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/smalltalk.html.markdown b/smalltalk.html.markdown index 57e558b2..d9edbf06 100644 --- a/smalltalk.html.markdown +++ b/smalltalk.html.markdown @@ -188,7 +188,7 @@ x := Random new next; yourself. x next. "random number strea x := 100 atRandom. "quick random number" ``` -##Bitwise Manipulation: +## Bitwise Manipulation: ``` | b x | x := 16rFF bitAnd: 16r0F. "and bits" @@ -381,7 +381,9 @@ y := x asSet. "convert string to s y := x shuffled. "randomly shuffle string" ``` -## Array: Fixed length collection +## Array: +Fixed length collection + - ByteArray: Array limited to byte elements (0-255) - WordArray: Array limited to word elements (0-2^32) @@ -424,7 +426,9 @@ y := x asBag. "convert to bag coll y := x asSet. "convert to set collection" ``` -## OrderedCollection: acts like an expandable array +## OrderedCollection: +acts like an expandable array + ``` | b x y sum max | x := OrderedCollection with: 4 with: 3 with: 2 with: 1. "create collection with up to 4 elements" @@ -616,7 +620,6 @@ y := x key. y := x value. ``` -## Dictionary: ## IdentityDictionary: uses identity test (== rather than =) |