aboutsummaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2019-08-11all tests passingAndrew Kelley
2019-08-03Merge remote-tracking branch 'origin/master' into llvm9Andrew Kelley
2019-08-02docs: add atomicrmw operations listAndrew Kelley
2019-07-20docs: don't try to run the undefined behavior example testAndrew Kelley
2019-07-19slightly simpler implementationAndrew Kelley
2019-07-19Docgen invalid for &&Benjamin Feng
2019-07-16organize the docs and some rewordingAndrew Kelley
2019-07-16Add multidimensional array exampleJohnathanFL
2019-07-16fix documentation regarding mixing object filesAndrew Kelley
closes #2905
2019-07-11doc clarify struct size and ABI-alignmentMichael Dusan
2019-07-06Remove reference to Keyword_anyerror in docgenhryx
2019-07-06Make anyerror not a keywordhryx
2019-07-06Merge pull request #2823 from hryx/unicode-escapeAndrew Kelley
Unicode escapes: support u{N...}
2019-07-05docs: mention `@unionInit` in the union sectionAndrew Kelley
2019-07-04Unicode escapes: documentation and grammarhryx
2019-07-04improve the error message and test coverageAndrew Kelley
2019-07-03Merge branch 'impl-1107' of https://github.com/emekoi/zig into emekoi-impl-1107Andrew Kelley
2019-07-03add docs for enum literalsAndrew Kelley
closes #683
2019-07-03added tests for #1107 and a note in the referenceemekoi
2019-07-03update `@unionInit` to integrate with result location semanticsAndrew Kelley
2019-07-02fixupsAndrew Kelley
2019-07-02Merge branch 'has-field' of https://github.com/shawnl/zig into shawnl-has-fieldAndrew Kelley
2019-07-02docs: mention the standard library documentationAndrew Kelley
also mention the FAQ in the README. also link to the other documentation versions.
2019-06-29fix syntax highlightingemekoi
2019-06-26Merge remote-tracking branch 'origin/master' into copy-elision-3Andrew Kelley
2019-06-26all tests passing on linuxAndrew Kelley
2019-06-23Merge branch 'simd2' of https://github.com/shawnl/zig into shawnl-simd2Andrew Kelley
2019-06-22stage1: add @sin @cos @exp @exp2 @ln @log2 @log10 @fabs @floor @ceil @trunc ↵Shawn Landden
@round and expand @sqrt This revealed that the accuracy of ln is not as good as the current algorithm in musl and glibc, and should be ported again. v2: actually include tests v3: fix reversal of in and out arguments on f128M_sqrt() add test for @sqrt on comptime_float do not include @nearbyInt() until it works on all targets.
2019-06-22heap: make one global instance of DirectAllocatorSahnvour
it is now stateless, so the de/init are not necessary anymore
2019-06-22Update langref.html.inGray Olson
2019-06-19stage1: add support for @mulAdd fused-multiply-add for floats and vectors of ↵Shawn Landden
floats Not all of the softfloat library is being built.... Vector support is very buggy at the moment, but should work when the bugs are fixed. (as I had the same code working with another vector function, that hasn't been merged yet).
2019-06-18fix tiny typo in langref.html.inBoris
2019-06-14fix `@export` for arrays not respecting the symbol nameAndrew Kelley
Previously, the symbol name parameter of `@export` would be ignored for variables, and the variable name would be used for the symbol name. Now it works as expected. See #2679
2019-06-11Update langref.html.inNicholas Walton
Missing an "it"
2019-06-09different array literal syntax when inferring the sizeAndrew Kelley
old syntax: []i32{1, 2, 3} new syntax: [_]i32{1, 2, 3} closes #1797
2019-06-09grammarmarkfirmware
2019-06-08docs: update for else exampleJonathan Pentecost
Updates: #2614
2019-06-08docs: add comment about for else and breakShritesh Bhattarai
2019-05-31doc: recommend optional pointers for nullptrs instead of allowzeroShritesh Bhattarai
2019-05-30default struct field initialization expressionsAndrew Kelley
closes #485
2019-05-29std.meta/trait: def/definition => decl/declarationtgschultz
TypeInfo: defs/Definition => decls/Declarations
2019-05-29change `use` to `usingnamespace`Andrew Kelley
See #2014 `use` syntax is still accepted for now. `zig fmt` automatically updates code. After a release cycle the old syntax will be removed.
2019-05-27Merge pull request #2523 from shritesh/wasmdocAndrew Kelley
docs: wasm
2019-05-27fix debug builds of WASIAndrew Kelley
2019-05-27std lib fixes for zig build on windowsAndrew Kelley
2019-05-27allow const to be passed to @hasField()Shawn Landden
Actually include the tests I wrote
2019-05-26tests passing on linuxAndrew Kelley
2019-05-26clean up references to osAndrew Kelley
2019-05-26more progress on posix API layerAndrew Kelley
see #2380
2019-05-26extract posix functions from std/os.zig to std/os/posix.zigAndrew Kelley
See #2380