Option type

In programming languages (more so functional programming languages) and type theory, an option type or maybe type is a polymorphic type that represents encapsulation of an optional value; e.g., it is used as the return type of functions which may or may not return a meaningful value when they are applied. It consists of a constructor which either is empty (named None or Nothing), or which encapsulates the original data type A (written Just A or Some A). Outside of functional programming, these are termed nullable types.

Names and definitions

In different programming languages, the option type has various names and definitions.

In type theory, it may be written as: .

In languages having tagged unions, as in most functional programming languages, option types can be expressed as the tagged union of a unit type plus the encapsulated type.

In the Curry-Howard correspondence, option types are related to the annihilation law for ∨: x∨1=1.

An option type can also be seen as a collection containing either one or zero elements.

The option monad

The option type is a monad under these functions:

We may also describe the option monad in terms of functions return, fmap and join, where the latter two are given by:

The option monad is an additive monad: it has Nothing as a zero constructor and the following function as a monadic sum:

The resulting structure is an idempotent monoid.

Examples

Scala

Scala implements Option as a parameterized type, so a variable can be an Option, accessed as follows:[2]

// Defining variables that are Options of type Int
val res1: Option[Int] = Some(42)
val res2: Option[Int] = None

// sample 1 :  This function uses pattern matching to deconstruct Options
def compute(opt: Option[Int]) = opt match {
  case None => "No value"
  case Some(x) => "The value is: " + x
}

// sample 2 :  This function uses monad method
def compute(opt: Option[Int]) = opt.fold("No Value")(v => "The value is:" + v )

println(compute(res1))  // The value is: 42
println(compute(res2))  // No value

Two main ways to use an Option value exist. The first, not the best, is the pattern matching, as in the first example. The second, the best practice, is the monad method, as in the second example. In this way, a program is safe, as it can generate no exception or error (e.g., by trying to obtain the value of an Option variable that is equal to None). Thus, it essentially works as a type-safe alternative to the null value.

F#

(* This function uses pattern matching to deconstruct Options *)
let compute = function
  | None   -> "No value"
  | Some x -> sprintf "The value is: %d" x

printfn "%s" (compute <| Some 42)(* The value is: 42 *)
printfn "%s" (compute None)      (* No value         *)

Haskell

-- This function uses pattern matching to deconstruct Maybes
compute :: Maybe Int -> String
compute Nothing  = "No value"
compute (Just x) = "The value is: " ++ show x

main :: IO ()
main = do
    print $ compute (Just 42) -- The value is: 42
    print $ compute Nothing -- No value

Swift

func compute(_ x: Int?) -> String {
  // This function uses optional binding to deconstruct optionals
  if let y = x {
    return "The value is: \(y)"
  } else {
    return "No value"
  }
}

print(compute(42)) // The value is: 42
print(compute(nil)) // No value
func compute(_ x: Int?) -> String {
  // This function explicitly unwraps an optional after comparing to nil
  return nil == x ? "No value" : "The value is: \(x!)"
}

print(compute(42)) // The value is: 42
print(compute(nil)) // No value
func compute(_ x: Int?) -> String {
  // This function uses pattern matching to deconstruct optionals
  switch x {
  case .none: 
    return "No value"
  case .some(let y): 
    return "The value is: \(y)"
  }
}

print(compute(42)) // The value is: 42
print(compute(nil)) // No value

Rust

Rust allows using either pattern matching or optional binding to deconstruct the Option type:

fn main() {
    // This function uses pattern matching to deconstruct optionals
    fn compute(x: Option<i32>) -> String {
        match x {
            Some(a) => format!("The value is: {}", a),
            None    => format!("No value")
        }
    }

    println!("{}", compute(Some(42))); // The value is: 42
    println!("{}", compute(None)); // No value
}
fn main() {
    // This function uses optional binding to deconstruct optionals
    fn compute(x: Option<i32>) -> String {
        if let Some(a) = x {
            format!("The value is: {}", a)
        } else {
            format!("No value")
        }
    }

    println!("{}", compute(Some(42))); // The value is: 42
    println!("{}", compute(None)); // No value
}

Julia

Julia requires explicit deconstruction to access a nullable value:

function compute(x::Nullable{Int})
    if !isnull(x)
        println("The value is: $(get(x))")
    else
        println("No value")
    end
end
julia> compute(Nullable(42))
The value is: 42
julia> compute(Nullable{Int}())
No value

Perl 6

There are as many null values as there are types, that is because every type is its own null. So all types are also their own option type.

To opt into a non-nullable version of a type add the :D "smiley" to it.

It is also possible to opt into a type that is only ever a nullable using the :U "smiley".

# the default is `Any` ( the default base type/class )
my $a;
say defined $a; # False
say $a; # (Any)
# That is actually short for
# my Mu $a is default(Any);

my Any   $a; # only accept "normal" values
my Any:_ $a; # same as above

my Int $b;
say defined $b; # False
say $b; # (Int)

# my Int:D $c; # Error, you have to initialize it
my Int:D $c = 0;
say defined $c; # True
say $c.VAR.default; # (Int:D)
# $c = Nil; # Error, the default is `Int:D` which isn't a defined value

# If you use the defined type "smiley" you may want to use `is default`
# to be able to accept a Nil. (Nil is not the same as a null in other languages)
my Int:D $d is default(10) = 0;
say $d; # 0
$d = Nil;
say $d; # 10

# no need to assign a value if it's the same as the default
my Int:D $e is default(10);
say $e; # 10

my Numeric:U $n;
$n = 1.WHAT;
say $n;          # (Int)
$n = (1/2).WHAT;
say $n;          # (Rat)
# $n = 1;        # Error, only accepts undefined values
# $n = Str;      # Error, only accepts types that do the Numeric role

Type "smileys" are used more often for methods and subroutines than they are for variables.

proto sub is-it-defined ( Any:_ $ ) {*} # `Any:_` is the same as `Any`, only used here to line up the signatures

multi sub is-it-defined ( Any:U $ ) { 'undefined' } # a null value that is of type `Any` or a subtype
multi sub is-it-defined ( Any:D $ ) {   'defined' } # a non-null value of type `Any` or a subtype

There are special variations of if and unless called with and without that check for definedness rather than truthiness.

These set $_ by default, unlike their boolean cousins.

sub say-is-it-defined ( $value ) {
    # notice that these set `$_` to the argument by default, but `if` does not
    with    $value { say "$_.perl() is defined" }
    without $value { say "$_.perl() is not defined" }
}

say-is-it-defined 0;     # 0 is defined
say-is-it-defined '';    # "" is defined

say-is-it-defined Any;   # Any is not defined
say-is-it-defined my $;  # Any is not defined

my $a;
sub something-or-other { … }

# postfix variation of `with`, this also sets `$_`
$a = $_ with something-or-other;
# `$a` will change to the result, but only if the result was defined

There are also variations of ||, or and and that test for definedness.

say   0 // 1; # 0
say Nil // 1; # 1

# notice that these set `$_` to the left value
Nil orelse  say "$_.perl() is undefined"; # Nil is undefined
0   andthen say "$_.perl() is defined";   # 0 is defined

See also

References

  1. "Null Safety - Kotlin Programming Language". Retrieved 2016-08-01.
  2. Martin Odersky; Lex Spoon; Bill Venners (2008). Programming in Scala. Artima Inc. pp. 282–284. ISBN 978-0-9815316-0-1. Retrieved 6 September 2011.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.