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

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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

  1. bounded-integer bounded-integer Public

    Forked from programble/bounded-integer

    Bounded integers for Rust

    Rust 24 8

  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