aboutsummaryrefslogtreecommitdiff
path: root/std/std.zig
AgeCommit message (Expand)Author
2019-03-29add std.ascii to std.std test "std"Rohlem
2019-03-22std: add ascii with C ASCII character classesShawn Landden
2019-03-13this empty import workaround no longer necessaryAndrew Kelley
2019-03-11Merge branch 'valgrind' of https://github.com/daurnimator/zig into daurnimato...Andrew Kelley
2019-03-02rename std lib files to new conventionAndrew Kelley
2016-03-01rewrite how importing worksAndrew Kelley
2016-02-28Add support to open, create and close filenotkild
2016-02-09std: fix parse_u64 implementation and add testAndrew Kelley
2016-02-07array.len generates a constant number literal expressionAndrew Kelley
2016-02-07remove ptr field access of arraysAndrew Kelley
2016-02-06std: remove auto flushing of stderr. use printfAndrew Kelley
2016-02-05parsing code for defer and moreAndrew Kelley
2016-02-05update for loop syntaxAndrew Kelley
2016-02-04move os_get_random_bytes to os.zigAndrew Kelley
2016-02-02unreachable causes a trap in debug modeAndrew Kelley
2016-02-02add abort function and "cold" fn attributeAndrew Kelley
2016-01-29fix some inaccuracy in float printingMovingtoMars
2016-01-29remove some magic numbers from float printingMovingtoMars
2016-01-29float printing mostly worksMovingtoMars
2016-01-28std: remove incorrect float printing codeAndrew Kelley
2016-01-28remove accidental printf from float printingMovingtoMars
2016-01-28cleanup float printingMovingtoMars
2016-01-28basic float printingMovingtoMars
2016-01-25variable initializations are now mandatoryAndrew Kelley
2016-01-25syntax: back to -> for return type, no more =>Andrew Kelley
2016-01-25implement %% operatorAndrew Kelley
2016-01-24update std lib to use error type and global variablesAndrew Kelley
2016-01-24introduce the error keyword and typeAndrew Kelley
2016-01-23various small cleanupsAndrew Kelley
2016-01-23codegen: fix field access of arraysAndrew Kelley
2016-01-22character literal returns a number literalAndrew Kelley
2016-01-22support statically initialized array literalAndrew Kelley
2016-01-22add test for const number literalAndrew Kelley
2016-01-21number literal reworkAndrew Kelley
2016-01-20parsing error value decls and error value literalsAndrew Kelley
2016-01-18use signed integer for sizes of thingsAndrew Kelley
2016-01-18refactor std to use for loopAndrew Kelley
2016-01-15rename "use" to "import"Andrew Kelley
2016-01-14overflow intrinsics take type as first argumentAndrew Kelley
2016-01-14instead of 'as' to cast, call type as functionAndrew Kelley
2016-01-13all types are now expressionsAndrew Kelley
2016-01-10detect and report top level decl dependency loopAndrew Kelley
2016-01-09add memcpy and memset intrinsicsAndrew Kelley
2016-01-09implement pub constAndrew Kelley
2016-01-08suport checked arithmetic operations via intrinsicsAndrew Kelley
2016-01-08implement unknown size array indexing and slicingAndrew Kelley
2016-01-08codegen: fix else if expression and maybe unwrap exprAndrew Kelley
2016-01-08fix codegen for implicit maybe wrapAndrew Kelley
2016-01-07add ?? maybe unwrapping binary operatorAndrew Kelley
2016-01-06fix undefined reference to memcpy in release modeAndrew Kelley