jw3126 / ArgCheck.jl

Package for checking function arguments

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Better error message for keyword function calls

jw3126 opened this issue · comments

using ArgCheck

x=1
y=2
@argcheck isapprox(x,y; atol=0.1)
# ArgumentError: isapprox(x, y; atol=0.1) must hold.

Error message should give the values of x,y

Works fine on master.