Skip to content

Fix duplicate #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion content/monthly/202307.org
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ pub fn fromTimestamp(ts: u64) DateTime {
};
}
#+end_src
- [[https://www.aolium.com/karlseguin/cf03dee6-90e1-85ac-8442-cf9e6c11602a][Parsing timestamps and generating RFC3339 dates in Zig]] :: Zig 标准库里有返回
- [[https://www.aolium.com/karlseguin/46252c5b-587a-c419-be96-a0ccc2f11de4][Custom JSON serialization in Zig]] :: Zig 里面虽然有很好的 JSON 序列化支持,但是有些时候我们需要自定义某个字段的解析,与 Go =json.Marshaller= 类似,Zig 会在序列化时查找类型的 =jsonStringify= 函数,通过实现这个函数就可以达到目的,文中给出了个示例:
#+begin_src zig
const NumericBoolean = struct {
Expand Down