-
We should expose the getter and setter for the number of subrays (actually, beamSampleQuality) to pyhelios.
I am also wondering about the function
`Scanner.setNumRays(int)` - is that not rather ca…
-
Using plain properties with a getter and a setter, there is often a desire to validate inputs when they are configured.
One example is [Wrapper.setGradleVersion](https://github.com/gradle/gradle/b…
-
```
taming-membrane.js tameRecord should probably cajaVM.constFunc(...) the getter
and setter it defines, since they have no particular reason to be mutated and
(unlike extensibility of the record i…
-
We have a ```BIO_set_conn_mode()``` API that directly sets the entire ```connect_mode``` word, but also have more fine-grained operations like ```BIO_C_SET_NBIO``` to tweak just a single flag.
Is the…
kaduk updated
4 months ago
-
The main drawback I see with explicit getters/setters as suggested in #485 is that we can no longer use the attribute name to also serve as an internal slot (if needed).
In particular, with
```
…
-
Mutators and accessors
A class' public methods are commonly classified as either mutators or accessors.
A mutator method may modify ("mutate") a class' fields.
An accessor method accesses fields …
-
If i add type to properties, it's not working.
For example if I have, in a Foo class, a property "private int $num;" i can't generate getter and setter.
When i choose generate for, this property…
-
This will be mainly
* Connection::
* send_message
* call_method
* receive_message
Probably best we have a timeout on the whole `Connection` itself and add a getter/setter for timeout instead o…
-
originally raised by @ngwese
frequently we have a getter/setter that has an index, ie ansible has four tracks so the "note" getter will be asking which track.
# 1. 1-indexing with 0 indicating "…
-
```
@AutoValue
abstract class MyClass {
abstract ImmutableList getBlobs();
Builder builder() {
return new AutoValue_MyClass.Builder();
}
@AutoValue.Builder
abstract static …