Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用“\”作为中缀关系运算符?就像是:
let \ y x = if x % y = 0 then true else false
不,根据运算符重载(F#):
允许的运算符字符为 !、%、&、*、+、-、.、/、<、=、>、?、@、^、| 和 ~。~ 字符具有使运算符一元化的特殊含义,它不是运算符字符序列的一部分。