Warning: This file is auto-generated by
mix ptc.gen_docsfrompriv/java_compat_audit.exs. Manual edits will be overwritten. Editpriv/java_compat_audit.exsinstead.
Curated LLM-compatibility target for java.time.LocalDate.
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 Instant Audit | Java Duration Audit | Java Period Audit | Java Date Audit
Summary
Coverage excludes not_relevant entries: supported / (supported + candidate + not_classified).
| Status | Count |
|---|---|
| Supported | 6 |
| Candidate | 3 |
| Not Relevant | 0 |
| Not Classified | 0 |
| Relevant Target | 9 |
| Coverage | 6/9 (66.7%) |
| Total | 9 |
Details
| Var | Status | Description | Notes |
|---|---|---|---|
.format | 🔲 candidate | Format date with a formatter | Date formatting API would need a bounded formatter surface. |
.isAfter | ✅ supported | Date ordering predicate | Works for same-type Date or DateTime values. |
.isBefore | ✅ supported | Date ordering predicate | Works for same-type Date or DateTime values. |
.minusDays | ✅ supported | Subtract days from a LocalDate | Requested in issue #1019 for date arithmetic. |
.plusDays | ✅ supported | Add days to a LocalDate | Requested in issue #1019 for date arithmetic. |
.toEpochDay | ✅ supported | Return LocalDate epoch-day integer | Requested in issue #1019 for day differences and date sorting. |
LocalDate/now | 🔲 candidate | Current date | Useful, but currentTimeMillis plus parse/Date constructors cover many cases. |
LocalDate/of | 🔲 candidate | Construct date from year/month/day | Useful Java idiom; vector/map construction plus parse is the current workaround. |
LocalDate/parse | ✅ supported | Parse ISO-8601 date string | Also available as java.time.LocalDate/parse and parse. |