-
I noticed a strange behavior when I use awesome print with Struct and one of the attribute is ":s"+other_attribute.
Here an example:
```ruby
require "awesome_print"
require "ostruct"
A = St…
-
### Structs
```coffee
struct Employee {
name: String,
title: String,
}
let employee = Employee {
name = "Jamie Kyle",
title = "Principal Engineer",
}
employee.name
employee.titl…
-
-
Apache Thrift supports struct literals in thrift files.
For example,
```
struct Date {
1: byte day
2: byte month
3: i16 year
}
const Date foo = {'day': 1, 'month': 1, 'year': 1234}
```
…
-
# Conditional Type Narrowing
#56941
* Today, we check an expression like
```ts
arg === 1 ? "someString" : 37
```
by getting the type of both branches and unioning them - and we can't make…
-
Imported from SourceForge on 2024-07-04 17:05:51
Created by **[peterpall](https://sourceforge.net/u/peterpall/)** on 2015-08-15 19:04:53
Original: https://sourceforge.net/p/maxima/bugs/3002
---
If a…
rtoy updated
4 months ago
-
### Problem
Not sufficient however would be nice to fix it. Generated Rust code contains redundant entities however they are inner types of ignored external ones.
### Steps
1. the same as in #556
…
gshep updated
3 weeks ago
-
In `execution/http_rpc.go`, the function `CreateAccessList()` is throwing an error. It is not able to unmarshal data from the rpc to `types.AccessList` struct.
-
This issue is a sibling of #517.
Consider the following C struct
``` C
struct A {
char* value;
};
struct TestStruct {
int a;
struct A substruct;
};
```
FFI looks like
``` ruby
class A < FFI:…
-
### Motivation
Example:
```rust
/* ---------------- Vector3 ---------------- */
#[wasm_bindgen]
pub struct Vector3 {
value: (f64, f64, f64),
pub is_dirty: bool
}
#[wasm_bindgen]
im…