Qqwy

Qqwy

TypeCheck Core Team

How to use Inspect.Algebra?

As some of you might now, I am creating a Multi User Dungeon (a text-based multiplayer game) in Elixir. This is mostly a hobby project, to learn what a non-trivial project in Elixir will look like, and do’s and don’t when an Elixir project grows in size.

The text that is generated in the game is sent over a simple TCP connection to the telnet shells of connected clients. What I would like to do, is to format this text, so lines break nicely, instead of cutting words in half.

I think the Inspect.Algebra module is useful for this, as I presume that this is what Elixir uses underwater to print the pretty-printed documentation whenever you use h Modulename in IEx.

However, I am a bit stumped on how to use it properly. Can someone explain how I can use it to generate line-breaks from an iodata string?

Most Liked

bbense

bbense

Inspect.Algebra is a set of tools for implementing the Inspect protocol for your data types.

Probably the best place to figure out how to use it is in the Elixir source code itself.

Look at the defimpl Inspect for the various data types to get examples.

gregvaughn

gregvaughn

I toyed with it once briefly, but I’m pretty sure the APIs have changed since then. The best example I know of is in the Programming Elixir book, and now that I review it, it’s not as extensive as I recall.

bbense

bbense

BTW, digging through the code of Inspect is how I actually really understood protocols and I “borrowed” much of the structure of phst_transform from the Inspect protocol.

Where Next?

Popular in Questions Top

Harrisonl
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service. Currently when I de...
New
siddhant3030
Hi, I have to write a raw query for one of my project. But till now I have used ecto queries and don’t have much experience writing raw ...
New
greenz1
I have a phoenix application from which a user can download multiple(5-6) files of size 1MB. I couldn’t find anything related to sending ...
New
New
freewebwithme
Using vs code and installed ElixirLS: support and debugger. And I got an error popped up on start up says Failed to run ‘elixir’ comma...
New
vegabook
I'm brand new to Phoenix and I have stripped one of the demo applications to the bone. I just want to get an svg up on the screen. Here i...
New
baxterw3b
Hi guys, i’m new in the Elixir world, and i have to say, that i love it! i’m having some problem to understand anonymous functions with ...
New
jason.o
In the code below, if the create action is not set to accept “extra_key” as an input, it errors out with a message shown above. Is there ...
New
srinivasu
How to handle excepions in elixir? Suppose i have A, B, C ,D, E modules. and each module has get() function. A.get() method will call th...
New
shijith.k
I am trying to start a new phoenix project with elixir 1.9, but mix phx.new does not work. It says that ** (Mix) The task "phx.new" could...
New

Other popular topics Top

chrismccord
As promised, the first release candidate of Phoenix 1.3.0 is out! This release focuses on code generators with improved project structure...
New
AstonJ
Posting this to see if we can make things easier for people to get into Neovim. If you use Neovim and have a favourite distro please let ...
New
stefanluptak
Hello everybody, usually, I use a 29" ultra-wide monitor for VSCode which can easily accomodate explorer (files panel) + file with code ...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
Emily
I have VueJS GUIs with the project generated using Webpack. I have Elixir modules that will need to be used by the VueJS GUIs. I fore...
New
Lily
In templates/appointment/index.html.eex: <%= for appointment <- @appointments do %> <tr> <td><%= appoi...
New
fayddelight
I tried installing elixir 1.11.2 erlang 23.3.4 via asdf in my zsh shell. Enabled the versions locally and globally. When I list them ...
New
hariharasudhan94
lets say i have a sample like a = 20; b = 10; if (a > b) do {:ok, "a"} end if (a < b) do {:ok, b} end if (a == b) do {:ok, "eq...
New
baxterw3b
Hi guys, i’m new in the Elixir world, and i have to say, that i love it! i’m having some problem to understand anonymous functions with ...
New
axelson
This post is a wiki (feel free to hit the edit button near the bottom right of this post to add your own changes!) This post collects co...
239 47849 226
New

We're in Beta

About us Mission Statement