On this page:
ini
section
param
8.12

1 Ini Structures🔗ℹ

 (require ini/structs) package: ini-lib

struct

(struct ini (sections)
    #:extra-constructor-name make-ini)
  sections : (listof section?)

struct

(struct section (name params)
    #:extra-constructor-name make-section)
  name : symbol?
  params : (listof param?)

struct

(struct param (name value)
    #:extra-constructor-name make-param)
  name : symbol?
  value : string?