{"id":22375852,"url":"https://github.com/stylewarning/cl-string-complete","last_synced_at":"2026-01-27T18:35:47.572Z","repository":{"id":236852837,"uuid":"625691666","full_name":"stylewarning/cl-string-complete","owner":"stylewarning","description":null,"archived":false,"fork":false,"pushed_at":"2023-04-09T22:18:06.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-25T23:34:10.400Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Common Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stylewarning.png","metadata":{"files":{"readme":"README","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":"2023-04-09T22:07:05.000Z","updated_at":"2023-04-09T22:18:10.000Z","dependencies_parsed_at":"2024-04-29T00:08:21.471Z","dependency_job_id":"428d2eb9-283d-4050-93f0-ac8ca509a550","html_url":"https://github.com/stylewarning/cl-string-complete","commit_stats":null,"previous_names":["stylewarning/cl-string-complete"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stylewarning%2Fcl-string-complete","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stylewarning%2Fcl-string-complete/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stylewarning%2Fcl-string-complete/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stylewarning%2Fcl-string-complete/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stylewarning","download_url":"https://codeload.github.com/stylewarning/cl-string-complete/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245708990,"owners_count":20659625,"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":[],"created_at":"2024-12-04T21:27:58.648Z","updated_at":"2026-01-27T18:35:42.556Z","avatar_url":"https://github.com/stylewarning.png","language":"Common Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"#+TITLE: The =CL-STRING-COMPLETE= String Completion Library\n#+AUTHOR: Robert Smith\n#+EMAIL: quad@symbo1ics.com\n\n* Summary\nA small library for string completion by Robert Smith.\n\n* Usage\nThe principle use follows.\n\nCreate a completion tree:\n\n    : \u003e (defparameter *tree* (make-completion-tree))\n\nAdd your words to it:\n\n    : \u003e (completion-tree-add *tree* \"hello\")\n    : \u003e (completion-tree-add* *tree* \"helmet\"\n    :                                \"help\"\n    :                                \"helsinki\")\n\nCheck if something exists in the tree:\n\n    : \u003e (completion-tree-contains-p *tree* \"hello\")\n    : T\n    : \u003e (completion-tree-contains-p *tree* \"hexagon\")\n    : NIL\n\nCompute the completions of a character:\n\n    : \u003e (compute-completions *tree* #\\h)\n    : (\"ello\" \"elmet\" \"elp\" \"elsinki\")\n    : \u003e (compute-completions *tree* #\\x)\n    : NIL\n\nCompute the completions of a string:\n\n    : \u003e (compute-completions *tree* \"hel\")\n    : (\"lo\" \"met\" \"sinki\" \"p\")\n\n* Dependencies\nNone.\n\n* License\nSee the file ~LICENSE~.\n\n----------\n### End of file\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstylewarning%2Fcl-string-complete","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstylewarning%2Fcl-string-complete","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstylewarning%2Fcl-string-complete/lists"}