Use "unary" in a sentence

1. In set theory, a common convention is that the language has 2 constants, 0 and 1, and two binary functions · and +, and one unary function −.

Trong lý thuyết tập hợp, một quy ước chung là ngôn ngữ có 2 hằng số, 0 và 1, và hai hàm nhị phân · và +, và một hàm unary -.

2. If a constructor does not take any data arguments, it is nullary. -- nullary type constructor with two nullary data constructors data Bool = False | True -- non-nullary type constructor with one non-nullary data constructor data Point a = Point a a -- non-nullary type constructor with... data Maybe a = Nothing -- ...nullary data constructor | Just a -- ...unary data constructor

Nếu một hàm tạo mà không có bất kì đối số nào, thì nó là rỗng. -- nullary type constructor with two nullary data constructors data Bool = False | True -- non-nullary type constructor with one non-nullary data constructor data Point a = Point a a -- non-nullary type constructor with... data Maybe a = Nothing --...nullary data constructor | Just a --...unary data constructor