arslanarm
arslanarm
Here is the exec.brg that I added to std/os/exec ```rust use io use os use syscall use time fn LookPath(file: string) -> Result { EXT } fn Command(name: string, arg:...
Hi, adding `Nilable` would help with the seamless compatibility with go's ecosystem. But for this case specifically, in my opinion, `Result` is more aligned with the rust convention. Currently, it...
Didn't recall any stdlib functions that return nilable interface. But after looking up docs, found this https://pkg.go.dev/[email protected]#Lookup
Also, how would you define [os.exec.Cmd](https://pkg.go.dev/os/exec#Cmd) struct. My take on this struct: ```rust struct Cmd { Path: string, Args: [string], Env: Nilable, Dir: string, Stdin: Nilable, Stdout: Nilable, Stderr: Nilable,...
TLDR: I would like to stick with the idea of `Nilable` or creating the annotation for `Option` to be treated as "value that can be nil" rather than tagged union....
`T!` means that "nullability is unknown", and the behavior will be like using variables in java: you can access everything without checking for null, but if it is null, it...
I am currently trying to add more definitions of std packages that are not included in the `std` directory. I found out that for standard library, borgo uses `std/modules.json` file...
for those who come after :) Had the same issue with grant_type being "invalid". Only after seeing this issue, realized that I was signed up using google's oauth. Switched to...
Set log level to trace, tried using `guild.withStrategy(EntitySupplierStrategy.rest).fetchGuild()`, `member_count` is nowhere to be found in the response. I tried manually fetching using `kord.rest.guild` with `withCounts = true` and found out...