-
# Concept tree for F# learning mode
## Live exercises and concepts
Solid green means both are merged and the exercise is available to students.
## Some that are already in progress or planned…
-
Original Issue: apache/pulsar#3115
---
#### Expected behavior
JSONSchema should works with generic (parameterized type) POJO/DTO. No exception at runtime, or at least update documentation/errorM…
-
Multiple actions call fuctions from other actions e.g. init calling scan and then update and scan calling logic for init/installation. This change should consider refactoring some of the large action …
-
Currently, the typings for pipe() are arranged in such a way that the Source-specific patterns take precedence over the generic consumer, causing `pipe(source, consumer)` to be typed as `Source` if `c…
pjeby updated
7 months ago
-
It would be useful to provide opening brace sniffs for classes on Generic standard the same way done with functions.
-
I think now we can't because base functions are removed in the code.
If we demote the base package, it could be shown as an external reference rather than hidden.
The doc should mention that {base} …
-
**Is your feature request related to a problem? Please describe.**
Yes. I have a project that uses very little in the way of built-ins. It's largely types with generic parameters like `FingerTree v a…
-
It would be great to have one (two) generic functions to perform *all* polynomial parent conversion operations dispatching on the input type.
Same goes for Ideals with polynomials as coeffs
-
```lua
local type nilable = T | nil
local function divide(a: number, b: number): nilable, nilable
if b == 0 then
return nil, "division by zero"
end
return a / b, nil
end
…
-
**Is your feature request related to a problem? Please describe.**
I have a bunch of values stored in `ui.memory().data` as temporary data. Recently, I wanted to retain it persistently, which mean…