Skip to content
View Kestrer's full-sized avatar
🐢
just chillin
🐢
just chillin

Block or report Kestrer

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. bounded-integer bounded-integer Public

    Forked from programble/bounded-integer

    Bounded integers for Rust

    Rust 37 10

  2. A guide on how to write hygienic Rus... A guide on how to write hygienic Rust macros
    1
    # How to Write Hygienic Rust Macros
    2
    
                  
    3
    **Macro hygiene** is the concept of macros that work in all contexts; they don't affect and aren't
    4
    affected by anything around them. Ideally all macros would be fully hygienic, but there are _lots_
    5
    of pitfalls and traps that make it all too easy to accidentally write unhygienic macros. This guide