2020-05-15 13:41:26 +03:00
|
|
|
---
|
|
|
|
layout: developer-doc
|
|
|
|
title: Projections and Field Access
|
|
|
|
category: syntax
|
|
|
|
tags: [syntax, projections, field-access, pattern-matching]
|
2020-06-16 15:52:11 +03:00
|
|
|
order: 12
|
2020-05-15 13:41:26 +03:00
|
|
|
---
|
|
|
|
|
|
|
|
# Projections and Field Access
|
2020-07-21 15:59:40 +03:00
|
|
|
|
2020-05-15 13:41:26 +03:00
|
|
|
Enso provides multiple ways for users to access data from their types. It has
|
|
|
|
the old functional stalwart of pattern matching, but it also has an inbuilt
|
|
|
|
notion of accessors based on lenses (field projections).
|
|
|
|
|
|
|
|
<!-- MarkdownTOC levels="2,3" autolink="true" -->
|
|
|
|
|
|
|
|
- [Pattern Matching](#pattern-matching)
|
|
|
|
- [The Underscore in Pattern Matching](#the-underscore-in-pattern-matching)
|
|
|
|
- [Projections](#projections)
|
|
|
|
|
|
|
|
<!-- /MarkdownTOC -->
|
|
|
|
|
|
|
|
## Pattern Matching
|
2020-07-21 15:59:40 +03:00
|
|
|
|
2020-05-15 13:41:26 +03:00
|
|
|
Pattern matching in Enso works similarly to as you would expect in various other
|
|
|
|
functional languages. Typing information is _always_ refined in the branches of
|
|
|
|
a case expression, which interacts well with dependent typing and type-term
|
|
|
|
unification. There are a few main ways you can pattern match:
|
|
|
|
|
|
|
|
1. **Positional Matching:** Matching on the scrutinee by structure. This works
|
|
|
|
both for atoms and typesets (for typesets it is a subsumption judgement).
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
type Vector a
|
|
|
|
V2 x:a y:a
|
|
|
|
V3 x:a y:a z:a
|
|
|
|
|
|
|
|
v = Vector.V3 x y z
|
|
|
|
|
|
|
|
case v of
|
|
|
|
Vector.V3 x y z -> print x
|
|
|
|
```
|
|
|
|
|
|
|
|
2. **Type Matching:** Matching purely by the types involved, and not matching
|
|
|
|
on structure.
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
case v of
|
|
|
|
Vector.V3 -> print v.x
|
|
|
|
```
|
|
|
|
|
|
|
|
3. **Name Matching on Labels:** Matching on the labels defined within a type
|
|
|
|
for both atoms and typesets, with renaming.
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
case v of
|
|
|
|
Vector.V3 {x y} -> print x
|
|
|
|
{x} -> print x
|
|
|
|
```
|
|
|
|
|
|
|
|
4. **Naming Scrutinees in Branches:** Ascribing a name of a scrutinee is done
|
|
|
|
using the standard typing judgement. This works due to the type-term
|
|
|
|
unification present in Enso.
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
case _ of
|
|
|
|
v : Vector.V3 -> print v,x
|
|
|
|
```
|
|
|
|
|
|
|
|
> The actionables for this section :
|
|
|
|
>
|
|
|
|
> - Refine the syntax for the name-based case.
|
2020-07-21 15:59:40 +03:00
|
|
|
> - Provide code examples for why the renaming use-case is important (e.g. cases
|
|
|
|
> where there are clashing field names).
|
2020-05-15 13:41:26 +03:00
|
|
|
> - Function-resolution matching.
|
|
|
|
|
|
|
|
### The Underscore in Pattern Matching
|
2020-07-21 15:59:40 +03:00
|
|
|
|
2020-05-15 13:41:26 +03:00
|
|
|
An underscore `_` passed as an argument to a syntactic pattern does not behave
|
|
|
|
like the function argument shorthand. Instead it acts as a positional match that
|
|
|
|
is given no name.
|
|
|
|
|
|
|
|
## Projections
|
2020-07-21 15:59:40 +03:00
|
|
|
|
2020-05-15 13:41:26 +03:00
|
|
|
Unlike the simple accessors defined by most programming language, Enso's
|
|
|
|
accessors are far more powerful. This is because they are based on lenses.
|
|
|
|
|
|
|
|
- Field accessors are standard lenses. As such, they can be used for both the
|
|
|
|
getting and setting of properties.
|
|
|
|
- As a lens (e.g. `.field`) is a first-class function, they can be curried and
|
|
|
|
passed around like any other function.
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
type Engine
|
|
|
|
type Combustion
|
|
|
|
power: Int
|
|
|
|
cylinder_count: Int
|
|
|
|
|
|
|
|
type Electric
|
|
|
|
power: Int
|
|
|
|
is_blue: Bool
|
|
|
|
|
|
|
|
type Vehicle
|
|
|
|
type Car
|
|
|
|
color: String
|
|
|
|
max_speed: Int
|
|
|
|
engine: Engine
|
|
|
|
|
|
|
|
type Bike
|
|
|
|
color: String
|
|
|
|
|
|
|
|
type Person
|
|
|
|
type Cons
|
|
|
|
name: String
|
|
|
|
vehicle: Vehicle
|
|
|
|
|
|
|
|
main =
|
|
|
|
p1 = Person.Cons "Joe" (Vehicle.Car 'pink' 300 (Engine.Combustion 500 8))
|
|
|
|
print $ p1.name # -> Joe
|
|
|
|
print $ p1.vehicle.color # -> pink
|
|
|
|
print $ p1.vehicle.max_speed # -> Some 300
|
|
|
|
print $ p1.vehicle.engine.power # -> Some 500
|
|
|
|
print $ p1.vehicle.engine.is_blue # -> None
|
|
|
|
p1.vehicle.color = 'red' # OK
|
|
|
|
p1.vehicle.max_speed = 310 # FAIL: security reasons. Allowing this
|
|
|
|
# in Haskell was the worst decision
|
|
|
|
# ever. After refactoring it
|
|
|
|
# silently does nothing there.
|
|
|
|
|
|
|
|
p2 = p1.vehicle.max_speed ?= 310 # OK
|
|
|
|
p3 = p1.vehicle.engine.power = 510 # FAIL
|
|
|
|
p4 = p1.vehicle.engine.power ?= 510 # OK
|
|
|
|
|
|
|
|
lens_name = .name
|
|
|
|
lens_color = .vehicle.color
|
|
|
|
lens_max_speed = .vehicle.max_speed
|
|
|
|
lens_power = .vehincle.engine.power
|
|
|
|
|
|
|
|
## Function like usage:
|
|
|
|
print $ lens_name p1
|
|
|
|
print $ lens_color p1
|
|
|
|
print $ lens_max_speed p1
|
|
|
|
print $ lens_power p1
|
|
|
|
|
|
|
|
p1 . at lens_name = ... # OK
|
|
|
|
```
|
|
|
|
|
|
|
|
> The actionables for this section are:
|
|
|
|
>
|
|
|
|
> - Fix the example above. It isn't correct.
|