aboutsummaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2020-01-13doc/langref: mention that x is the sentinel in [N:x]TEmilio G. Cota
Without looking at the example it is not possible to know whether N or x is the sentinel value. Fix it.
2020-01-12docs: update grammar to remove C strings and add anon literalshryx
2020-01-11Correct TypeId docsdata-man
2020-01-09New @export() handlingLemonBoy
Use a struct as second parameter to be future proof (and also allows to specify default values for the parameters) Closes #2679 as it was just a matter of a few lines of code.
2020-01-08Correct @mulAdd's docdata-man
2020-01-06update docs with regards to callconvAndrew Kelley
2020-01-06fix test suite regressionsAndrew Kelley
2020-01-06Merge branch 'cc-work' of https://github.com/LemonBoy/zig into LemonBoy-cc-workAndrew Kelley
2020-01-02fix comptime vector float ops and add test coverageAndrew Kelley
also rename `@ln` to `@log` to match libc convention.
2020-01-02Implement the callconv() annotationLemonBoy
2020-01-01fix float ops with respect to vectorsAndrew Kelley
also remove the redundant type parameter
2019-12-30Merge pull request #3683 from Vexu/atomic-floatAndrew Kelley
Support floats with some atomic operations
2019-12-30update readme taglineAndrew Kelley
2019-12-28Make it more obvious that ifs are expressionsMateuszOkulus
2019-12-23support some atomic operations with floatsVexu
2019-12-17Clarify allowzero's interaction with optional pointers.Nathan Michaels
2019-12-16langref table of contents in a separate column on large displaysxackus
2019-12-16remove misleading documentationAndrew Kelley
2019-12-15Make sure the address is aligned for intToPtr opsLemonBoy
Closes #773
2019-12-12Document sentinel type in langrefJonathan Marler
2019-12-10Rename @typeOf to @TypeOf in the language referenceRobin Voetter
2019-12-09remove var args from the languageAndrew Kelley
closes #208
2019-12-09implement async function call with `@call`Andrew Kelley
this removes the last usage of var args in zig std lib
2019-12-09update docgen to new format APIAndrew Kelley
2019-12-08update docs to new fmt APIAndrew Kelley
2019-12-06Merge pull request #3856 from ziglang/builtin-callAndrew Kelley
introduce `@call` and remove other builtin calls
2019-12-06allow calling with a new stack to regress a bitAndrew Kelley
Calling with a new stack, with a runtime-known stack pointer (e.g. not a global variable) is regressed with this branch. It is now a compile-error, due to the Runtime Hint system not being smart enough to mix a compile-time modifier field with a runtime stack field. I'm OK with this regression because this feature is flawed (see #3268) and may be deleted from the language.
2019-12-06remove `@newStackCall` from zigAndrew Kelley
2019-12-06remove `@inlineCall` from zigAndrew Kelley
2019-12-05remove `@noInlineCall` from zigAndrew Kelley
2019-12-05docs: fix duplicate closing tag generationxackus
2019-12-05docs: add html lang and minor fixesxackus
2019-12-05docs: fix assembly examplexackus
2019-12-03Update the docs to use `@as`yvt
2019-12-01fix docs regressionsAndrew Kelley
2019-11-29docs: this statement was in the wrong sectionAndrew Kelley
2019-11-25docs: update references to wasm_allocatorAndrew Kelley
2019-11-25rename std.heap.direct_allocator to std.heap.page_allocatorAndrew Kelley
std.heap.direct_allocator is still available for now but it is marked deprecated.
2019-11-25more sentinel-terminated pointers std lib integrationAndrew Kelley
See #3767
2019-11-24all tests passingAndrew Kelley
2019-11-23langref: update for sentinel-terminated typesAndrew Kelley
2019-11-21update docs for null terminated stuffAndrew Kelley
2019-11-15fix containerdoccomment not handled in docgen.zigVexu
2019-11-13README: update the short description of what zig isAndrew Kelley
2019-11-13std.io.getStdOut and related fns no longer can errorAndrew Kelley
Thanks to the Windows Process Environment Block, it is possible to obtain handles to the standard input, output, and error streams without possibility of failure.
2019-11-13Merge pull request #3675 from Vexu/atomic-storeAndrew Kelley
Add @atomicStore builtin
2019-11-12fn parameters participate in result location semanticsAndrew Kelley
See #3665
2019-11-13add @atomicStore builtinVexu
2019-11-11update docs for anonymous struct/list literalsAndrew Kelley
2019-11-08fix regressed tests and update docs to use "type coercion"Andrew Kelley