Skip to content

This is a package for interfacing some inplace operations due to old julia code

License

Notifications You must be signed in to change notification settings

baxmittens/AltInplaceOperationInterface.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AltInplaceOperationInterface.jl

This is a package for interfacing some inplace operations due to old julia code

module AltInplaceOperationInterface

add!(a::A, b::B) where {A,B} = error("add!(a::$A, b::$B) is not implemented")
minus!(a::A, b::B) where {A,B} = error("minus!(a::$A, b::$B) is not implemented")
pow!(a::A, b::B) where {A,B} = error("pow!(a::$A, b::$B) is not implemented")
max!(a::A, b::B) where {A,B} = error("max!(a::$A, b::$B) is not implemented")
min!(a::A, b::B) where {A,B} = error("min!(a::$A, b::$B) is not implemented")

export add!, minus!, pow!, max!, min!

end

About

This is a package for interfacing some inplace operations due to old julia code

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages