f769599bc6
docs; fix random module docs missing a closing tag (thanks @totallyRonja)
2020-08-29 12:03:46 -07:00
433fbc4019
core; num; add exp & log2
...
I've had a couple use cases in time that the code is significantly clearer with these, and makes porting less error prone
2020-07-10 19:38:45 -07:00
9fb6d02b5c
main branch reference fixes
2020-06-12 10:11:49 -07:00
d69d7e482d
Added description of to the Num class docs ( #726 )
2020-06-05 15:08:52 -07:00
d585a080e8
Merge pull request #751 from wren-lang/0.3.0-refactor
...
0.3.0 refactor
2020-06-05 14:57:20 -07:00
fa2a3d9576
Clarify modulus documentation for sign
...
closes #695
2019-09-17 22:27:47 -07:00
451098db05
docs: Fixed broken link to overview about maps
...
Closes #672
2019-04-09 17:44:15 +02:00
a437e804ba
Added String.fromByte with docs and unit test
2019-02-27 08:10:54 -05:00
57a1d809d8
docs; replace wren repo URL to point to organization
2019-02-05 18:41:31 -08:00
7cc7c715c9
docs; list; add + operator documentation
2019-02-05 18:18:38 -08:00
21024bfa13
docs; formatting and tidying
...
- quick clean up pass on layout and colors for clarity/legibility
- added logo to the sidebar
- fix various css things like a full height page when content is shorter, so the footer doesn't creep away from the bottom
- start using em instead of px for consistency across devices
2019-02-05 18:18:24 -08:00
09f4beff4a
Add trim methods on String:
...
- trim()
- trim(chars)
- trimEnd()
- trimEnd(chars)
- trimStart()
- trimStart(chars)
2018-07-15 10:48:56 -07:00
4c9209c1b2
Update file.markdown
...
minor fix to close() language
2018-06-03 23:06:40 -05:00
1be76bb478
Correct method examples in Range docs
2017-10-23 13:48:43 -04:00
1661f5368f
Allow passing a value when first starting a fiber.
...
If the function the fiber is created from takes a parameter, the value
passed to the first call() or transfer() gets bound to that parameter.
Also, this now correctly handles fibers with functions that take
parameters. It used to leave the stack in a busted state. Now, it's a
runtime error to create a fiber with a function that takes any more
than one parameter.
2017-10-19 20:45:13 -07:00
2021e086bf
Don't automatically flush on every System.write().
...
It's handy because it ensures writes are flushed to the terminal before
any calls to read from stdin, but it's also gratuitously slow.
Instead, added a Stdout class with an explicit flush() method that can
be called by the user.
Fix #445 .
2017-10-09 07:16:05 -07:00
eba0b97aa2
Merge pull request #472 from KyleCharters/master
...
Add Num .round
2017-10-06 07:51:55 -07:00
2bb531d860
Tweak Fiber.error docs.
2017-10-05 06:50:45 -07:00
84f2252c68
Add Num .round
2017-09-20 20:27:02 -04:00
16bab57056
fix #468
2017-09-16 21:38:35 -07:00
8f14bfb4b8
Fix typo in Num documentation
...
The documentation for the bitwise or operator described the behavior of the bitwise and operator.
2017-03-30 17:45:12 -05:00
9f93119377
Merge branch 'take_and_skip' of https://github.com/bjorn/wren into bjorn-take_and_skip
2017-03-15 07:15:00 -07:00
9efb18bae2
Typo: "seperator" -> "separator".
2017-03-15 07:06:07 -07:00
32aa43d1df
Split and replace in wren.
2017-03-07 21:15:06 -05:00
f5d9443d0a
Added Sequence.take and Sequence.skip
...
These lazy iterator producing methods are useful when working with
arbitrary sequences and you need to skip or take some number of elements
at the start.
2017-02-10 21:43:59 +01:00
4fe3ad3f8b
Docs for Num.log and Num.pow().
2017-01-20 07:24:46 -08:00
09ef904d32
Use DBL_MIN instead of DBL_EPSILON for Num.smallest.
2016-08-27 17:25:32 -07:00
b8b0f36521
Merge branch 'num-properties' of https://github.com/Nelarius/wren into Nelarius-num-properties
2016-08-27 17:18:21 -07:00
6ee1743429
Update Num class doc
2016-08-04 21:17:45 +03:00
500c7b0426
Add List constructors to docs.
2016-08-04 06:28:41 -07:00
6845328661
Tweak String.indexOf(_,_) a bit.
...
- Simplify the arithmetic a little in wrenStringFind().
- Allow the start to be negative.
- Even more tests.
- Docs.
2016-08-03 22:19:34 -07:00
d192a9a02d
Add doc mention of new Num properties
2016-07-10 23:26:23 +03:00
8657a42c21
Merge pull request #366 from underscorediscovery/patch-2
...
fix range docs to introduction
2016-05-27 07:23:41 -07:00
78deace9a4
Merge pull request #365 from underscorediscovery/patch-1
...
docs; iterator protocol link relative to core/ not modules/
2016-05-27 07:23:07 -07:00
2b0878ec6d
Platform.isWindows.
2016-05-21 12:53:21 -07:00
6002cc4d65
Add Stdin.isTerminal.
2016-05-21 12:51:11 -07:00
06731f66d4
Add a Platform class.
...
- Rename the "process" module to "os".
- Add Platform to it.
- Static "name" method.
- Static "isPosix" method.
- Docs and tests!
2016-05-21 12:44:17 -07:00
5a8cacfbe4
fix range docs to introduction
...
Is that the link that was intended?
2016-05-21 00:24:41 -02:30
b57fd6431a
iterator protocol relative to core/ not modules/
2016-05-21 00:21:47 -02:30
5d98d20175
Add Stdin.isRaw.
2016-05-20 15:19:18 -07:00
500dd41ccd
Add Stdin.readByte().
2016-05-20 11:50:14 -07:00
befe90501b
Start writing comprensive embedding docs.
...
- Break embedding out into a separate section with multiple pages.
- Document the constraints on the API.
- Document the slot array and WrenValue.
Still lots more to do, but getting there...
2016-05-16 08:09:14 -07:00
1e4b9e5175
File.realPath().
...
Not tested yet, because we can't create symlinks from Wren and I don't
want to check symlinks into the repo, but it seems to do the right
thing.
2016-02-27 15:53:02 -08:00
919605b7ba
Couple of tiny tweaks.
2016-02-24 06:52:12 -08:00
2c4e497c54
Fix a couple of doc bugs.
2016-02-22 07:48:53 -08:00
60162575ee
More file system checking functions:
...
- Stat#isFile
- Stat#isDirectory
- Directory.exists()
- File.exists()
2016-02-21 12:23:33 -08:00
8e90e3577b
More file IO!
...
Can now create, delete, and write to files.
2016-02-20 09:23:42 -08:00
a2e03279e2
Fix abs code sample in doc/site/modules/core/num
...
-123.abs returns -123 because the dot has higher precedence so it's
really -(123.abs).
2016-02-11 17:58:09 -05:00
8b36e2f00b
Add sample(_) and sample(_,_) to Random.
2016-02-09 07:24:45 -08:00
d4a4b26203
Add Random.shuffle().
2016-02-07 10:38:39 -08:00