{"id":16021754,"url":"https://github.com/davidanthoff/stringbuilders.jl","last_synced_at":"2025-04-05T03:43:37.055Z","repository":{"id":47607810,"uuid":"121321034","full_name":"davidanthoff/StringBuilders.jl","owner":"davidanthoff","description":"A StringBuilder type for julia","archived":false,"fork":false,"pushed_at":"2025-01-12T22:19:54.000Z","size":1452,"stargazers_count":20,"open_issues_count":6,"forks_count":7,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-12T12:39:33.934Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/davidanthoff.png","metadata":{"files":{"readme":"README.md","changelog":"NEWS.md","contributing":null,"funding":null,"license":"LICENSE.md","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":"2018-02-13T00:43:26.000Z","updated_at":"2025-01-11T22:46:19.000Z","dependencies_parsed_at":"2024-07-06T09:45:44.610Z","dependency_job_id":"a5480b95-fa2a-4e7a-a547-27dd13fc4320","html_url":"https://github.com/davidanthoff/StringBuilders.jl","commit_stats":{"total_commits":242,"total_committers":7,"mean_commits":34.57142857142857,"dds":"0.23966942148760328","last_synced_commit":"84a500d1a5511d3e3d319130283123b78df1d4ac"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidanthoff%2FStringBuilders.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidanthoff%2FStringBuilders.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidanthoff%2FStringBuilders.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidanthoff%2FStringBuilders.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/davidanthoff","download_url":"https://codeload.github.com/davidanthoff/StringBuilders.jl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247284918,"owners_count":20913691,"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-10-08T18:05:34.230Z","updated_at":"2025-04-05T03:43:37.031Z","avatar_url":"https://github.com/davidanthoff.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# StringBuilders\n\n[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)\n![](https://github.com/davidanthoff/StringBuilders.jl/workflows/Run%20tests/badge.svg)\n[![codecov](https://codecov.io/gh/davidanthoff/StringBuilders.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/davidanthoff/StringBuilders.jl)\n\n## Overview\n\nA simple type for building up ``String``s. Use as follows:\n\n````julia\nusing StringBuilders\n\nsb = StringBuilder()\nappend!(sb, \"First string\")\nappend!(sb, \"Second string\")\n\ns = String(sb)\n````\n\nThe advantage of StringBuilders.jl over using `IOBuffer` is in the API. Some may find The higher-level StringBuilders.jl API easier to use. For comparison, the example above using `IOBuffer` would be\n\n```julia\nio = IOBuffer()\nwrite(io, \"First string\")\nwrite(io, \"Second String\")\ns = String(take!(io))\nclose(io)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavidanthoff%2Fstringbuilders.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavidanthoff%2Fstringbuilders.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavidanthoff%2Fstringbuilders.jl/lists"}