hex logo Hex
Packages Pricing Docs
Log In
Packages Pricing Docs Log In
Packages

rondo

0.1.0
0.1.7 0.1.6 0.1.5 0.1.4 0.1.3 0.1.2 0.1.1 0.1.0

component rendering library

HexDocs

Current section

Files

Jump to
Readme
8 Versions
1 Dependency
1 Dependant
Files
Activity
Readme 8 Versions 1 Dependency 1 Dependant Files Activity
rondo lib rondo operation.ex
Raw

24 files

  • lib
    • rondo
      • action
        • store.ex
      • component
        • pointer.ex
      • state
        • store.ex
      • store
        • reference.ex
      • validator
        • default.ex
      • action.ex
      • affordance.ex
      • application.ex
      • component.ex
      • diff.ex
      • diffable.ex
      • element.ex
      • event.ex
      • operation.ex
      • path.ex
      • state.ex
      • store.ex
      • test.ex
      • traverser.ex
      • tree.ex
      • validator.ex
    • rondo.ex
  • README.md
  • mix.exs

lib/rondo/operation.ex

defmodule Rondo.Operation do
defmodule Remove do
defstruct [:path]
end
defmodule Replace do
defstruct [:path, :value]
end
def remove(path) do
%Remove{path: :lists.reverse(path)}
end
def replace(path, value) do
%Replace{path: :lists.reverse(path), value: value}
end
# def move
# def copy - worth it?
end

Package files

  • README.md
  • lib/rondo.ex
  • lib/rondo/action.ex
  • lib/rondo/action/store.ex
  • lib/rondo/affordance.ex
  • lib/rondo/application.ex
  • lib/rondo/component.ex
  • lib/rondo/component/pointer.ex
  • lib/rondo/diff.ex
  • lib/rondo/diffable.ex
  • lib/rondo/element.ex
  • lib/rondo/event.ex
  • lib/rondo/operation.ex
  • lib/rondo/path.ex
  • lib/rondo/state.ex
  • lib/rondo/state/store.ex
  • lib/rondo/store.ex
  • lib/rondo/store/reference.ex
  • lib/rondo/test.ex
  • lib/rondo/traverser.ex
  • lib/rondo/tree.ex
  • lib/rondo/validator.ex
  • lib/rondo/validator/default.ex
  • mix.exs
hex logo Hex
About Blog Sponsors Status Advisories
Documentation FAQ Specifications Report Client Issue Report General Issue Report Security Issue Contact Support
Code of Conduct Terms of Service Privacy Policy Copyright Policy Dispute Policy

Copyright 2015. Six Colors AB.

Powered by the Erlang VM and the Elixir Programming Language

Search filters

Type any of these into the search box. They can be combined with free text which searches package names and descriptions.

Operator Description Example
name: Match package name. Supports * wildcards and repo/package form name:phx* or name:hexpm/phoenix
description: Full-text search of package descriptions description:auth
depends: Packages depending on a given package. Supports repo:package form depends:ecto or depends:hexpm:ecto
build_tool: Filter by build tool build_tool:mix
updated_after: Packages updated after an ISO8601 datetime updated_after:2025-01-01T00:00:00Z
extra: Match custom metadata (key,value). Nested keys are separated by commas extra:license,MIT

Wrap values in double quotes to include spaces, e.g. name:"my package".