{"id":15885856,"url":"https://github.com/rutledgepaulv/hierarchical","last_synced_at":"2025-04-02T15:45:28.357Z","repository":{"id":147340347,"uuid":"93972239","full_name":"RutledgePaulV/hierarchical","owner":"RutledgePaulV","description":"Clojure hierarchy semantics for associative data structures.","archived":false,"fork":false,"pushed_at":"2017-06-11T01:15:23.000Z","size":7,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"develop","last_synced_at":"2025-02-08T06:42:17.496Z","etag":null,"topics":["clojure","data-structure","hierarchy"],"latest_commit_sha":null,"homepage":"","language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RutledgePaulV.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-06-11T00:11:12.000Z","updated_at":"2017-06-11T01:20:15.000Z","dependencies_parsed_at":"2023-07-07T04:34:42.998Z","dependency_job_id":null,"html_url":"https://github.com/RutledgePaulV/hierarchical","commit_stats":{"total_commits":8,"total_committers":1,"mean_commits":8.0,"dds":0.0,"last_synced_commit":"f33cfc93fdd1be693bda45315587e0bf9c2e5498"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RutledgePaulV%2Fhierarchical","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RutledgePaulV%2Fhierarchical/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RutledgePaulV%2Fhierarchical/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RutledgePaulV%2Fhierarchical/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RutledgePaulV","download_url":"https://codeload.github.com/RutledgePaulV/hierarchical/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246847053,"owners_count":20843438,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["clojure","data-structure","hierarchy"],"created_at":"2024-10-06T05:08:14.994Z","updated_at":"2025-04-02T15:45:28.327Z","avatar_url":"https://github.com/RutledgePaulV.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# hierarchical\n\n[![Build Status](https://travis-ci.org/RutledgePaulV/hierarchical.svg?branch=develop)](https://travis-ci.org/RutledgePaulV/hierarchical)\n\nHierarchical is a library providing views over associative data structures that utilize\nClojure's hierarchy semantics for membership tests rather than strict equality.\n  \n## Usage\n\n```clojure\n(ns example\n  (:require [hierarchical.core :as h]))\n\n(derive ::pets ::animals)\n(derive ::farm ::animals)\n(derive ::cows ::farm)\n(derive ::cats ::pets)\n(derive ::dogs ::pets)\n\n(def kingdom\n    {::animals {:eat \"Grass\"} \n     ::pets {:eat \"Pet Food\"}\n     ::cats {:eat \"Fancy Feast\"}})\n\n(def hiera (h/hierarchical kingdom))\n\n(::cats hiera)\n; {:eat \"Fancy Feast\"}\n\n(::dogs hiera)\n; {:eat \"Pet Food\"}\n\n(::cows hiera)\n; {:eat \"Grass\"}\n\n```\n\n### License\n\nThis project is licensed under [MIT license](http://opensource.org/licenses/MIT).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frutledgepaulv%2Fhierarchical","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frutledgepaulv%2Fhierarchical","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frutledgepaulv%2Fhierarchical/lists"}