https://github.com/blackode/typex
Data type finder with some useful data like whether data is empty, map with no values, empty list. such hints are returned to get the idea of data.
https://github.com/blackode/typex
Last synced: 8 months ago
JSON representation
Data type finder with some useful data like whether data is empty, map with no values, empty list. such hints are returned to get the idea of data.
- Host: GitHub
- URL: https://github.com/blackode/typex
- Owner: blackode
- Created: 2016-12-27T11:18:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-04-29T01:27:37.000Z (about 7 years ago)
- Last Synced: 2025-06-19T19:46:22.371Z (about 1 year ago)
- Language: Elixir
- Homepage:
- Size: 6.84 KB
- Stars: 8
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Typex
Data type finder with some useful data like whether data is empty, map with no values, empty list. such hints are returned to get the idea of data.
The New CHange
## Installation
[available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add `typex` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:typex, "~> 0.1.0"}]
end
```
2. Ensure `typex` is started before your application:
```elixir
def application do
[applications: [:typex]]
end
```