-
### Describe the feature
When fetching from DynamoDB and accessing a binary data field, `AttributeValue::GetB()` makes a copy of the underlying `ByteBuffer` (that's held in a shared pointer to hopefu…
-
### Please describe the bug
When checking for sendable return types, the compiler is too conservative in what it allows. For example, take a method like this:
```inko
class Symbol {
fn static …
-
Hi development team,
I've been testing your glomap software with UAV imagery, focusing on vegetated scenes. I've noticed that the software isn't performing as well as I'd hoped with these types of …
-
suggest all member functions that can be `static`
# example
```
class foo {
void foo(String a) {
print(a);
}
}
```
suggest:
```
class foo {
static void foo(String a) {
…
-
I reuse custom types in my model class, for example a class called CreditCardNumber. Static fields in this class are also send with the request. On server side, the validation failed because of that s…
futzl updated
5 years ago
-
### Is your feature request related to a problem? Please describe.
Currently we mix all types of files in `/srv/off`:
- code
- static configurations files (like the taxonomy)
- local configuration…
-
We shouldn't require types for consts and statics unless necessary. `const FOO = "foo";` or `static bar = 42;` should just work. I propose that we try to infer based only on the RHS, i.e., we do not l…
-
### Background and motivation
The current implementation of Complex in System.Numerics feels like a second-class citizen; it cannot be easily used in similar ways to other numeric types, and as it …
-
-------------- Build: Release in plugin_sa (compiler: GNU GCC Compiler)---------------
g++.exe -m32 -O2 -D_DX9_SDK_INSTALLED -DGTASA -DPLUGIN_SGV_10US -DRW -fpermissive -std=gnu++17 -IC:\plugin-s…
-
## Summary
Let's say we have two separate native modules, `things_types` which defines a `Thing` class, and `things` which has a `get_all() -> List[Thing]` function. Then I write the following code…