Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in unsafe

Why is await forbidden in unsafe sections?

c# unsafe async-await

Why does modifying a mutable reference's value through a raw pointer not violate Rust's aliasing rules?

pointers rust unsafe borrowing

Can I override object with sun.misc.Unsafe?

java unsafe

How to pin the whole array in C# using the keyword fixed

c# fixed unsafe

Unsafe string pointer statement

c# .net unsafe fixed-statement

How to run unsafe code in "visual studio code"?

Converting a Vec<u32> to Vec<u8> in-place and with minimal overhead

casting rust unsafe

How can I get an array or a slice from a raw pointer?

rust unsafe

Temporarily transmute [u8] to [u16]

arrays casting rust unsafe

How to safely get an immutable byte slice from a `&mut [u32]`?

rust unsafe

Fastest way to operate on individual bytes in an int

c# performance unsafe

Are efficient fixed-size arrays possible without using unsafe code in .NET?

c# arrays unsafe

How to call unsafe code from ASP.NET xproj

Return unsafe pointer to type parameter

c# generics unmanaged unsafe

What is an unsafe function in Haskell?

haskell unsafe

Can you limit the CPU usage on a .NET Process Object?

c# .net winapi unsafe

C# unsafe value type array to byte array conversions

Why are Python multiprocessing Pipe unsafe?

Calling multiple dll imports with the same method name

c# c++ dllimport unsafe

Processing vec in parallel: how to do safely, or without using unstable features?