Hello,

I have a simple question. I like to compare functions. For example:

function some_func(x::Target, y::Config, z::Int64)
   #some code here
end

#some partialization here
f1 = (x::Target,y::Config) -> some_func(x,y,5)
f2 = (x::Target,y::Config) -> some_func(x,y,4)


I want to evaluate the following expression:

f1 == f2 


Thanks

Reply via email to