Reference×
Reference
- [] (array access)
- = (assign)
- catch
- class
- // (comment)
- , (comma)
- {} (curly braces)
- /** */ (doc comment)
- . (dot)
- draw()
- exit()
- extends
- final
- false
- import
- implements
- loop()
- /* */ (multiline comment)
- new
- noLoop()
- null
- () (parentheses)
- popStyle()
- pop()
- pushStyle()
- push()
- private
- public
- redraw()
- return
- ; (semicolon)
- setLocation()
- setResizable()
- setTitle()
- setup()
- static
- super
- thread()
- this
- try
- void
- true
Name
shuffle()
Class
FloatList
Description
Randomize the order of the list elements.
Examples
FloatList inventory; void setup() { size(200, 200); inventory = new FloatList(); inventory.append(108.6); inventory.append(5.8); inventory.append(8.2); println(inventory); inventory.shuffle(); println(inventory); }
Syntax
.shuffle()
.shuffle(sketch)
Return
void

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.