Skip to content

Commit

Permalink
Merge branch 'main' of github.com:daniel-rusu/pods4k
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-rusu committed Mar 29, 2024
2 parents 28a9c39 + 0a1daa1 commit 28b3b2d
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: Bug report
about: Report a bug to help us improve
title: ''
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Sample code snippet to reproduce the problem:
```kotlin
val values = ImmutableIntArray(3) { it }
println(values.size) // produces 2 but expected 3
```

**Expected behavior**
A clear and concise description of what you expected to happen.

**Environment (please complete the following information):**
- Kotlin version: [eg. 1.9.20]
- JDK: [eg. OpenJDK 17]

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea to make this library even more awesome
title: ''
labels: enhancement
assignees: ''

---

**Is your feature request related to a problematic scenario? Please describe.**
A clear and concise description of a simplified scenario. Ex. I want to iterate over the elements of the array but I don't see a way to do that cleanly because...

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context about the feature request here.

0 comments on commit 28b3b2d

Please sign in to comment.