Skip to content

Commit 400420b

Browse files
committedApr 11, 2022
Updates deps, improves docs, bumps version
1 parent 50bfcd9 commit 400420b

File tree

4 files changed

+67
-28
lines changed

4 files changed

+67
-28
lines changed
 

‎README.md

+34-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
# Xray
22

3-
Xray is an academic exploration of strings and encodings in [Elixir](https://elixir-lang.org/).
3+
[![Module Version](https://img.shields.io/hexpm/v/xray.svg)](https://hex.pm/packages/xray)
4+
[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/xray/)
5+
[![Total Download](https://img.shields.io/hexpm/dt/xray.svg)](https://hex.pm/packages/xray)
6+
[![License](https://img.shields.io/hexpm/l/xray.svg)](https://hex.pm/packages/xray)
7+
[![Last Updated](https://img.shields.io/github/last-commit/fireproofsocks/xray.svg)](https://github.com/fireproofsocks/xray/commits/master)
48

5-
It offers utility functions useful for inspecting strings and their code points.
9+
Xray is an academic exploration of strings and encodings in [Elixir](https://elixir-lang.org/).
610

7-
For example, the `Xray.inspect/1` function:
11+
It offers utility functions useful for inspecting strings and their code points to better understand strings and encodings.
12+
13+
## Examples
14+
15+
The `Xray.inspect/1` function gives you a deep introspection on a string:
816

917
```elixir
1018
iex> Xray.inspect("cät")
@@ -16,21 +24,21 @@ iex> Xray.inspect("cät")
1624
Is printable? true
1725
======================================================
1826

19-
c Codepoint: 99 (\\u0063) https://codepoints.net/U+0063
27+
c Codepoint: 99 (\u0063) https://codepoints.net/U+0063
2028
Is printable? true
2129
Script(s): latin
2230
Byte Count: 1
2331
UTF-8: <<99>>
2432
Base2: 01100011
2533

26-
ä Codepoint: 228 (\\u00E4) https://codepoints.net/U+00E4
34+
ä Codepoint: 228 (\u00E4) https://codepoints.net/U+00E4
2735
Is printable? true
2836
Script(s): latin
2937
Byte Count: 2
3038
UTF-8: <<195, 164>>
3139
Base2: 11000011 10100100
3240

33-
t Codepoint: 116 (\\u0074) https://codepoints.net/U+0074
41+
t Codepoint: 116 (\u0074) https://codepoints.net/U+0074
3442
Is printable? true
3543
Script(s): latin
3644
Byte Count: 1
@@ -39,6 +47,22 @@ iex> Xray.inspect("cät")
3947
[:ok, :ok, :ok]
4048
```
4149

50+
The `Xray.codepoint/2` function provides the code point for a single character -- functionally, this is equivalent to what the question-mark operator `?` does, but `Xray.codepoint/2` allows you to inspect a variable (whereas `?` only operates on literal values):
51+
52+
```elixir
53+
iex> Xray.codepoint("ä")
54+
228
55+
```
56+
57+
`Xray.codepoints/2` allows you to inspect the component codepoint numbers that make up the given string:
58+
59+
```elixir
60+
iex> Xray.codepoints("cät")
61+
"99, 228, 116"
62+
```
63+
64+
See [Xray Hex Docs](https://hexdocs.pm/xray/Xray.html) for more info.
65+
4266
## Installation
4367

4468
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
@@ -47,7 +71,7 @@ by adding `xray` to your list of dependencies in `mix.exs`:
4771
```elixir
4872
def deps do
4973
[
50-
{:xray, "~> 0.1.0"}
74+
{:xray, "~> 1.2.0"}
5175
]
5276
end
5377
```
@@ -70,5 +94,6 @@ iex> "🇺🇸" <><<0>>
7094
## See Also
7195

7296
Some interesting articles
73-
- https://angelika.me/2017/07/11/print-my-string-elixir/
74-
- https://elixirforum.com/t/where-did-the-name-binaries-come-from-and-how-does-this-relate-to-base2/29490/14
97+
98+
- <https://angelika.me/2017/07/11/print-my-string-elixir/>
99+
- <https://elixirforum.com/t/where-did-the-name-binaries-come-from-and-how-does-this-relate-to-base2/29490/14>

‎lib/xray.ex

+19-8
Original file line numberDiff line numberDiff line change
@@ -131,27 +131,38 @@ defmodule Xray do
131131
Given a string binary, this returns a list of the codepoints that represent
132132
each of the characters in the string. This is what you might expect
133133
`String.codepoints/1` to return, but instead of returning a list of the
134-
component *characters* like `String.codepoints/1` does, this function
135-
returns the *numbers* (which is what code points are).
134+
component *characters*, this function returns the *numbers* (which is what
135+
code points are).
136+
137+
Note that this function returns a *string*: if a list is returned, Elixir will
138+
usually attempt to format it as a human-readable string, which defeats the
139+
purpose of the inspection.
140+
141+
This function offers output similar to what `IO.inspect/2` when the `:as_lists`
142+
option set to `true`
136143
137-
Note that this function returns a string: if a list is returned, it will be
138-
automatically displayed as a
139144
## Options
140-
- `:as_hex` (see `codepoint/2`)
145+
146+
- `:as_hex` (see `codepoint/2`)
141147
142148
## Examples
149+
143150
iex> Xray.codepoints("cät")
144151
"99, 228, 116"
152+
153+
Compare this to inspecting a single-quoted charlist:
154+
155+
iex> IO.inspect('cät', charlists: :as_lists)
156+
[99, 228, 116]
157+
158+
But `IO.inspect` will send output to STDOUT.
145159
"""
146160
@spec codepoints(string :: binary, opts :: keyword) :: list
147161
def codepoints(string, opts \\ []) when is_binary(string) do
148162
string
149163
|> String.codepoints()
150164
|> Enum.map(fn x -> codepoint(x, opts) end)
151165
|> Enum.join(", ")
152-
153-
# We want to see the numbers!!!
154-
# IO.inspect(x, charlists: :as_lists)
155166
end
156167

157168
# Converts a character like ä to its hexidecimal representation like `00E4`

‎mix.exs

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Xray.MixProject do
22
use Mix.Project
33

4-
@version "1.1.1"
4+
@version "1.2.0"
55

66
def project do
77
[
@@ -14,8 +14,10 @@ defmodule Xray.MixProject do
1414
deps: deps(),
1515
package: package(),
1616
docs: [
17+
main: "readme",
1718
source_ref: "v#{@version}",
18-
logo: "logo.png"
19+
logo: "logo.png",
20+
extras: ["README.md"]
1921
]
2022
]
2123
end
@@ -28,7 +30,7 @@ defmodule Xray.MixProject do
2830
defp package do
2931
[
3032
maintainers: ["Everett Griffiths"],
31-
licenses: ["Apache 2.0"],
33+
licenses: ["Apache-2.0"],
3234
logo: "logo.png",
3335
links: links(),
3436
files: [
@@ -54,8 +56,8 @@ defmodule Xray.MixProject do
5456
defp deps do
5557
[
5658
{:base2, "~> 0.1.0"},
57-
{:ex_unicode, "~> 1.11.0"},
58-
{:ex_doc, "~> 0.23.0", runtime: false}
59+
{:ex_unicode, "~> 1.12.0"},
60+
{:ex_doc, "~> 0.28.3", runtime: false}
5961
]
6062
end
6163
end

‎mix.lock

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
%{
22
"base2": {:hex, :base2, "0.1.0", "bc9e19f1578e1439010d26b1bee456f3ac980481a46c3643b24e15c40e1db0ed", [:mix], [], "hexpm", "a25eb2892e03f609fd5634aaf9a7795fb90f98dc9a7a495ed8c03b2844bbb647"},
33
"earmark": {:hex, :earmark, "1.4.3", "364ca2e9710f6bff494117dbbd53880d84bebb692dafc3a78eb50aa3183f2bfd", [:mix], [], "hexpm", "8cf8a291ebf1c7b9539e3cddb19e9cef066c2441b1640f13c34c1d3cfc825fec"},
4-
"earmark_parser": {:hex, :earmark_parser, "1.4.12", "b245e875ec0a311a342320da0551da407d9d2b65d98f7a9597ae078615af3449", [:mix], [], "hexpm", "711e2cc4d64abb7d566d43f54b78f7dc129308a63bc103fbd88550d2174b3160"},
5-
"ex_doc": {:hex, :ex_doc, "0.23.0", "a069bc9b0bf8efe323ecde8c0d62afc13d308b1fa3d228b65bca5cf8703a529d", [:mix], [{:earmark_parser, "~> 1.4.0", [hex: :earmark_parser, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.14", [hex: :makeup_elixir, repo: "hexpm", optional: false]}], "hexpm", "f5e2c4702468b2fd11b10d39416ddadd2fcdd173ba2a0285ebd92c39827a5a16"},
6-
"ex_unicode": {:hex, :ex_unicode, "1.11.0", "fb7dc40fe909e7e79163dbb3736e4d0e29e8ed5f0ff9d82ab1e95d1f287f7235", [:mix], [{:ex_doc, "~> 0.19", [hex: :ex_doc, repo: "hexpm", optional: false]}], "hexpm", "c2c8dd491a5aa18f9d30e5e765649f54d7c8f224496105f4a67ec73c80e1663c"},
7-
"makeup": {:hex, :makeup, "1.0.5", "d5a830bc42c9800ce07dd97fa94669dfb93d3bf5fcf6ea7a0c67b2e0e4a7f26c", [:mix], [{:nimble_parsec, "~> 0.5 or ~> 1.0", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "cfa158c02d3f5c0c665d0af11512fed3fba0144cf1aadee0f2ce17747fba2ca9"},
8-
"makeup_elixir": {:hex, :makeup_elixir, "0.15.0", "98312c9f0d3730fde4049985a1105da5155bfe5c11e47bdc7406d88e01e4219b", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}, {:nimble_parsec, "~> 1.1", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "75ffa34ab1056b7e24844c90bfc62aaf6f3a37a15faa76b07bc5eba27e4a8b4a"},
9-
"nimble_parsec": {:hex, :nimble_parsec, "1.1.0", "3a6fca1550363552e54c216debb6a9e95bd8d32348938e13de5eda962c0d7f89", [:mix], [], "hexpm", "08eb32d66b706e913ff748f11694b17981c0b04a33ef470e33e11b3d3ac8f54b"},
4+
"earmark_parser": {:hex, :earmark_parser, "1.4.25", "2024618731c55ebfcc5439d756852ec4e85978a39d0d58593763924d9a15916f", [:mix], [], "hexpm", "56749c5e1c59447f7b7a23ddb235e4b3defe276afc220a6227237f3efe83f51e"},
5+
"ex_doc": {:hex, :ex_doc, "0.28.3", "6eea2f69995f5fba94cd6dd398df369fe4e777a47cd887714a0976930615c9e6", [:mix], [{:earmark_parser, "~> 1.4.19", [hex: :earmark_parser, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.14", [hex: :makeup_elixir, repo: "hexpm", optional: false]}, {:makeup_erlang, "~> 0.1", [hex: :makeup_erlang, repo: "hexpm", optional: false]}], "hexpm", "05387a6a2655b5f9820f3f627450ed20b4325c25977b2ee69bed90af6688e718"},
6+
"ex_unicode": {:hex, :ex_unicode, "1.12.0", "986b1310360617d7d9ac5dc8ec2f1504abc9857bc39512690444b328b7172856", [:mix], [], "hexpm", "6bc1cbc70320159eea53812eba3824c7089882cc77636b6de286b301b64ed267"},
7+
"makeup": {:hex, :makeup, "1.1.0", "6b67c8bc2882a6b6a445859952a602afc1a41c2e08379ca057c0f525366fc3ca", [:mix], [{:nimble_parsec, "~> 1.2.2 or ~> 1.3", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "0a45ed501f4a8897f580eabf99a2e5234ea3e75a4373c8a52824f6e873be57a6"},
8+
"makeup_elixir": {:hex, :makeup_elixir, "0.16.0", "f8c570a0d33f8039513fbccaf7108c5d750f47d8defd44088371191b76492b0b", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}, {:nimble_parsec, "~> 1.2.3", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "28b2cbdc13960a46ae9a8858c4bebdec3c9a6d7b4b9e7f4ed1502f8159f338e7"},
9+
"makeup_erlang": {:hex, :makeup_erlang, "0.1.1", "3fcb7f09eb9d98dc4d208f49cc955a34218fc41ff6b84df7c75b3e6e533cc65f", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm", "174d0809e98a4ef0b3309256cbf97101c6ec01c4ab0b23e926a9e17df2077cbb"},
10+
"nimble_parsec": {:hex, :nimble_parsec, "1.2.3", "244836e6e3f1200c7f30cb56733fd808744eca61fd182f731eac4af635cc6d0b", [:mix], [], "hexpm", "c8d789e39b9131acf7b99291e93dae60ab48ef14a7ee9d58c6964f59efb570b0"},
1011
}

0 commit comments

Comments
 (0)