-
```
What steps will reproduce the problem?
1.
add to FBTestPluginAPI.cpp this code
registerMethod("getData", make_method(this, &FBTestPluginAPI::getData));
[...]
FB::VariantMap FBTestPluginAPI::getDa…
-
```
What steps will reproduce the problem?
1.
add to FBTestPluginAPI.cpp this code
registerMethod("getData", make_method(this, &FBTestPluginAPI::getData));
[...]
FB::VariantMap FBTestPluginAPI::getDa…
-
### current
1. `URI.query('?a[]=1&a[]=2')` ➞ `{ 'a[]': "2" }`
2. `URI.query('?a[b][]=1&a[b][]=2')` ➞ `{ 'a[b][]': "2" }`
### expected
1. `{ a: ['1', '2'] }`
2. `{ a: { b: ['1', '2'] } }`
-
Hi, thanks a lot for an awesome library.
I suppose I have found an inconstancy, here what it is:
```javascript
var values = { persons: [ { firstName: 'Viktor' } ] };
var rulesFlat = …
-
```
Correct the nested vectors/arrays displayer algorithm.
Example: (;(2;iota 2 3;(67; `s);9 8))
Result in A+:
<
< < 2
< 0 1 2
3 4 5
< < 67
< `s
< 9 8
Bad result in A+.NET:
<
…
-
```RecursionError: maximum recursion depth exceeded while calling a Python object
Exception ignored in: '_pydevd_frame_eval.pydevd_frame_evaluator_darwin_36_64.get_bytecode_while_frame_eval'
Recursi…
-
``` python
import json
from mergedict import ConfigDict
ds1 = ConfigDict({
'a': 1,
'b': [1,2,3],
'c': {
'd': [3,4]
}
})
ds1.merge({
'a': 2,
'b': [4,5,6],
'c': {
'…
-
Hello!
I've tested this several ways and cannot extract the desired results when I have nested arrays in my JSON.
Sample JSON:
```
{
"stores": [
{
"store": {
"store…
-
```
What steps will reproduce the problem?
1.
add to FBTestPluginAPI.cpp this code
registerMethod("getData", make_method(this, &FBTestPluginAPI::getData));
[...]
FB::VariantMap FBTestPluginAPI::getDa…
-
Hey,
I got the following json
```
{
"array1": [
{
"array2": []
},
{
"array2": [
{
"key": "test_key",
}
]
}
]
}
```
And i want to read …