aboutsummaryrefslogtreecommitdiff
path: root/std/str.zig
AgeCommit message (Collapse)Author
2017-02-07std.io supports printing integers as hex valuesAndrew Kelley
remove "unnecessary if statement" error this "depends on compile variable" code is too hard to validate, and has false negatives. not worth it right now. std.str removed, instead use std.mem. std.mem.eql and std.mem.sliceEql merged and do not require explicit type argument.
2017-01-22use comptime instead of inline for var and paramsAndrew Kelley
See #221
2016-12-31IR: progress toward compiling standard libraryAndrew Kelley
* comptime fn call * is_comptime doesn't count as an instruction dependency * update more std code to latest zig
2016-09-28remove compiler directivesAndrew Kelley
* add `setFnTest`, `setFnVisible`, `setFnStaticEval`, `setFnNoInline` builtin functions to replace previous directive functionality * add `coldcc` and `nakedcc` as keywords which can be used as part of a function prototype. * `setDebugSafety` builtin can be used to set debug safety features at a per block scope level. * closes #169
2016-08-16std: conform to style guidelinesAndrew Kelley
2016-07-25inline parametersAndrew Kelley
This replaces the current generic syntax for functions and replaces it with the concept of inline parameters. This paves the way for the "all structs anonymous" proposal. Closes #151.
2016-05-17add beginning of print stack trace functionAndrew Kelley
introduce std.debug and move std.assert to std.debug.assert add mem.copy
2016-05-07std: separate str and cstrAndrew Kelley
2016-05-07better array concatenation semanticsAndrew Kelley
closes #87
2016-04-19add optional continue expression to while loopAndrew Kelley
closes #139
2016-04-18rearrange standard library a bitAndrew Kelley