Skip to content

Supporting div and % #4

Description

@kimikage

I think div and % should be interpreted as aliases for ÷ and rem.

julia> @macroexpand(@checked typemax(UInt) ÷ -1)
:(Base.Checked.checked_div(typemax(UInt), -1))

julia> @macroexpand(@checked div(typemax(UInt), -1))
:(div(typemax(UInt), -1))

julia> @macroexpand(@checked typemax(UInt) % -1)
:(typemax(UInt) % -1)

julia> @macroexpand(@checked rem(typemax(UInt), -1))
:(Base.Checked.checked_rem(typemax(UInt), -1))

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions