-
```C#
class SuperBase
{
private void SuperBasePrivateMethod () { } // Is not preserved
}
class Base : SuperBase
{
private void BasePrivateMethod () { } // This doesn't need to be preserved…
-
With constexpr it seems to be possible to parse the format string at compile time to determine if the number of arguments passed actually matches the number of arguments specified.
This could fill th…
-
Let's face it: it's totally weird that this is well-typed:
``` ceylon
alias Bool => \Itrue|\Ifalse;
void fun(Bool bool) {}
Boolean t = true;
fun(t of Bool);
```
But this is not:
``` ceylon
alias Bo…
-
# 아이템 28. 배열보다는 리스트를 사용하라.
## 핵심 정리: 배열과 제네릭은 잘 어울리지 않는다.
```java
// 공변
Object[] anything = new String[10];
anything[0] = 1;
// 불공변
List names = new…
-
```c
UINT tx_thread_create(TX_THREAD *thread_ptr, CHAR *name_ptr,
VOID (*entry_function)(ULONG), ULONG entry_input,
VOID *stack_start, ULONG stack_size…
-
This is a feature request for marking functions as not having any side effects, aka being pure.
Flow reports the following safe code as unsafe:
```
/* @flow */
type T = { func: ?(number) => void };
…
-
Is there anything I need to be careful of when using the `send` feature flag? It being locked behind a feature flag makes me wary that it has some side effects, as otherwise Send could be implemented …
-
### What were you trying to do?
I have a command which sends some data to my API every 30 minutes.
### What happened?
I cannot have scheduled commands to call my API because it errors with a cu…
-
`Trials.reject` currently is typed to yield `Unit` in Scala and `void` in Java. This means that it can't be used in a value expression, so it tends to end up either in a guard block or is hoisted righ…
-
### Description
If mod flagged as `NoSync` and have any `ModWorld` what override `NetSend` method, Client without mod stuck in endless Mod Sync state.
### Steps to Reproduce
1. Create any empt…