Ran formatter
This commit is contained in:
parent
1d4aea2731
commit
605afc03cc
|
@ -2,6 +2,7 @@
|
|||
sidebar_position: 4
|
||||
title: Point Set Distribution
|
||||
---
|
||||
|
||||
:::danger
|
||||
These functions aren't yet implemented with these specific names. This should be changed soon
|
||||
:::
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
sidebar_position: 5
|
||||
title: Sample Set Distribution
|
||||
---
|
||||
|
||||
:::danger
|
||||
These functions aren't yet implemented with these specific names. This should be added soon.
|
||||
:::
|
||||
|
|
|
@ -6,12 +6,12 @@ title: List
|
|||
Squiggle lists are a lot like Python lists or Ruby arrays. They accept all types.
|
||||
|
||||
```javascript
|
||||
myList = [3, normal(5,2), "random"]
|
||||
myList = [3, normal(5, 2), "random"];
|
||||
```
|
||||
|
||||
### make
|
||||
|
||||
**Note: currently just called ``makeList``, without the preix**
|
||||
**Note: currently just called `makeList`, without the preix**
|
||||
|
||||
```
|
||||
List.make: (number, 'a) => list<'a>
|
||||
|
@ -39,7 +39,7 @@ length: (list<'a>) => number
|
|||
|
||||
### up to
|
||||
|
||||
**Note: currently just called ``upTo``, without the preix**
|
||||
**Note: currently just called `upTo`, without the preix**
|
||||
|
||||
```
|
||||
List.upTo: (low:number, high:number) => list<number>
|
||||
|
|
|
@ -3,7 +3,7 @@ sidebar_position: 9
|
|||
title: Number
|
||||
---
|
||||
|
||||
Squiggle ``numbers`` are Javascript floats.
|
||||
Squiggle `numbers` are Javascript floats.
|
||||
|
||||
Many of the functions below work on lists or pairs of numbers.
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user