Files
Odin/core
Jeroen van Rijn 03862d1f48 Mark mem.slice_ptr_to_bytes as deprecated.
Use byte_slice instead.

We can't make it an alias *and* mark it as deprecated, regrettably:

```odin
byte_slice :: #force_inline proc "contextless" (data: rawptr, len: int) -> []byte {
    return transmute([]u8)Raw_Slice{data=data, len=max(len, 0)};
}
@(deprecated="use byte_slice")
slice_ptr_to_bytes :: byte_slice;

"mem.odin(145:1) Constant alias declarations cannot have attributes"
```
2021-05-06 13:23:17 +02:00
..
2021-01-09 23:43:34 +00:00
2021-04-01 10:06:00 +01:00
2021-05-03 15:38:43 +02:00
2021-03-26 16:24:56 +00:00
2021-04-01 10:06:00 +01:00
2021-04-27 13:09:37 +01:00
2021-05-04 17:48:43 +02:00
2021-03-13 21:18:07 +00:00
2021-04-22 10:39:20 +01:00
2021-04-26 22:08:15 +01:00
2021-04-20 22:09:10 +02:00
2021-04-22 10:39:20 +01:00
2021-04-14 12:14:44 +01:00
2021-04-01 10:06:00 +01:00
2021-04-27 17:21:52 +01:00
2021-04-26 21:25:44 +01:00
2021-05-01 23:14:14 +01:00