https://github.com/dustinspecker/last
https://github.com/dustinspecker/last
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dustinspecker/last
- Owner: dustinspecker
- License: mit
- Created: 2016-03-01T01:45:01.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-05T22:27:16.000Z (over 9 years ago)
- Last Synced: 2025-02-16T09:26:40.578Z (5 months ago)
- Language: Elm
- Size: 3.91 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# Last [](https://travis-ci.org/dustinspecker/last) [](http://package.elm-lang.org/packages/dustinspecker/last/latest)
> Get the last element from a List.## Install
```bash
elm-package install dustinspecker/last
```## Usage
```elm
module AwesomeModule whereimport Last
Last.fromList [] -- Nothing
Last.fromList [ 1 ] -- Just 1
Last.fromList [ "yo", "hello" ] -- Just "hello"
```## License
MIT © [Dustin Specker](https://github.com/dustinspecker)