Tagged Questions

Paraphrased from Wikipedia: A unit type is a type that allows only one value (and thus can hold no information). Several computer programming languages provide a unit type to specify the result type of a function with the sole purpose of causing a side effect, and the argument type of a function ...

learn more… | top users | synonyms

9
votes
1answer
165 views

Why can I assign null to a Unit value and why does it get converted to ()?

Consider this code: var unit: Unit = null unit: Unit = () a) Why am I allowed to assign null to a value class? (see ยง12.2.3) b) Why does the null get converted to ()?
8
votes
3answers
359 views

Scala: Why can I convert Int to Unit?

I've recently started playing with Scala (2.8) and noticed the I can write the following code (in the Scala Interpreter): scala> var x : Unit = 10 x : Unit = () It's not obvious what's going on ...
7
votes
2answers
317 views

Void in constrast with Unit

I would like to understand which is the difference between these two programming concepts. The first represents the absence of data type and at the latter the type exists but there is no information. ...
3
votes
3answers
164 views

Why can an Array of Units hold null?

Unit is specified to be a subtype of AnyVal (and its only value is ()), so why is this possible: scala> val units = new Array[Unit](5) units: Array[Unit] = Array(null, null, null, null, null) Is ...
2
votes
4answers
145 views

Can someone explain what is going on here?

Here's the code: scala> def foo(bar: Unit => String) = {bar} foo: (bar: (Unit) => String)(Unit) => String scala> foo(a => a.toString) res0: (Unit) => String = <function1> ...
1
vote
1answer
90 views

Substituting curried function's args for Units

(invalid) What is the best way to partially substitute arguments in a curried function for Units: trait Expr[ A ] { def apply : A } type Reaction[ A ] = A => Unit type TypedReactor[ A ] = Expr[ ...
0
votes
0answers
67 views

What is the unit type in PL/SQL?

What is the unit type in PL/SQL? If there is no built-in type, how do I make one?