Stephen Cremin

Results 4 issues of Stephen Cremin

I'm using the [Floki](https://hexdocs.pm/floki/Floki.html) web parsing library and have defined the following specs for use in my own code: ```elixir def floki_html_tree(), do: coll_of(one_of([floki_html_comment(), floki_html_doctype(), floki_html_tag()])) def floki_html_comment(), do: {:comment,...

In case they help others, here are a couple of "helper" functions that I've found useful. --- 1. `maybe()` I often want specs or schemas that also accept a `nil`...

You can't specify a contract for a private function. For example: ```elixir defmodule Test do use Norm @contract public() :: :ok def public(), do: :ok @contract private() :: :ok defp...

Added this for purely selfish reasons as my own Elm app has over 10,000 lines of CSS (predominantly from Semantic UI) that I deliver in a production app as a...

enhancement