Paolo Bonzini
Paolo Bonzini
It is somewhat unwieldy to pass a closure that can fail to `get_or_create`. It would be nice to have a `try_get_or_create` (or something like that) method on `Lazy`. The method...
`Lazy` is currently using an `initialized` member as in LazyTransform. However, it could use a single pointer when T is a NonNull-like object (such as `Box`). If you believe having...
It is very hard to identify in the schematic which of the two 3V3 pins goes to the FTDI header and which goes to the I2C header. Because the FTDI...
This is the "bad" config: ``` only Fedora.9, Fedora.13, Fedora.16, Fedora.19, WinXP.i386.sp3, Win2003.i386, Win2003.x86_64, Win2008.i386.sp2, Win2008.x86_64.r2, Win7.i386, RHEL.4.8, RHEL.5.10, RHEL.6.5 unattended_install: only default_install Fedora, RHEL: only virtio_net only virtio_blk only...
Among the various strategies for extending APIs, the FAQ does not mention making an existing arguments optional. Here is a contrived example: ``` - method debug(parts: [string]()) -> (result: [string]object)...
## Breaking change Manual MQTT Alarm Control Panel When going from state "disarmed" to any other (armed) state such as "armed_away", the state will be "arming" instead of "pending" during...
The usual rule in Rust is that creating a pointer is safe but dereferencing it is not, so people may just assume that functions that take a pointer need not...
RxLua only has a zero-version create() function for Subject, corresponding to the constructor of RxJS for example. However, RxJS and other ReactiveX implementations also have a two-argument create() function, returning...
This is a minimal fix for the subscription leak in #22. I simply went through all operators and ensured that before every onCompleted the subscription is dropped. I also found...
Currently, Observable:dump does not work well with multiple values and no formatter. We can skip tostring and just unpack the values into print in order to improve the behavior.