Java Period Audit for PTC-Lisp

Copy Markdown View Source

Warning: This file is auto-generated by mix ptc.gen_docs from priv/java_compat_audit.exs. Manual edits will be overwritten. Edit priv/java_compat_audit.exs instead.

Curated LLM-compatibility target for java.time.Period.

See also: Function Reference | Namespace Coverage | Clojure Core Audit | Clojure String Audit | Clojure Set Audit | Clojure Walk Audit | Java Math Audit | Java Boolean Audit | Java Double Audit | Java Float Audit | Java Integer Audit | Java Long Audit | Java String Audit | Java System Audit | Java LocalDate Audit | Java Instant Audit | Java Duration Audit | Java Date Audit

Summary

Coverage excludes not_relevant entries: supported / (supported + candidate + not_classified).

StatusCount
Supported0
Candidate4
Not Relevant0
Not Classified0
Relevant Target4
Coverage0/4 (0.0%)
Total4

Details

VarStatusDescriptionNotes
.getDays🔲 candidateReturn day component of a PeriodDeferred for issue #1019 because this is the day component, not total days; easy to misuse for analytics.
Period/between🔲 candidatePeriod between two datesDeferred for issue #1019; Period.getDays is a component value, not total days. Use .toEpochDay subtraction for LocalDate day differences.
Period/ofDays🔲 candidateConstruct period from daysUseful companion for bounded Period support.
Period/parse🔲 candidateParse ISO-8601 period stringUseful but lower-priority than between/getDays.