Luke Horsley

Results 8 comments of Luke Horsley

I have found I am able to do this: @shannon: ::coefficient(); "Sh", "shannon", "shannons"; And @deciban: prefix!(deci) * ::coefficient(); "dHart", "deciban", "decibans"; However it's not the most concise, perhaps a...

@yenmoc Do the .NET SIMD types work under Unity? Are you sure it isn't just running without hardware acceleration (what's the result of `Vector.IsHardwareAccelerated`?) Interesting if that is so as...

And this fails in particular when `(nums.Length % Vector.Count) == 0` so with `Vector.Count == 8` the following values of `max` all fail: 7, 15, 23 etc And the needle...

This is supported by defining your own ObjectType for your entity, something like: ``` public sealed class StudentType : ObjectType { protected override void Configure(IObjectTypeDescriptor descriptor) { descriptor.BindFieldsExplicitly(); descriptor.Field(x =>...

If [Nullable reference types](https://github.com/dotnet/csharplang/issues/36) landed, could you not just have Task GetNextAsync() Where null is returned for no next item.

@yaakov-h Well your array would actually be `new string?[]{ .. }` with the nullable reference types, T would be `string?` so the result of `GetNextAsync` would be `string??`, but thinking...

Here is a full example as a minimal API ```csharp app.MapGet("/span_test", async (ActivitySource activitySource) => { await Task.Run(async () => { var previous = Activity.Current; try { Activity.Current = null;...

For now I have worked around this by capturing ExecutionContext on application start and restoring it before starting the child activity I want detached which appears to be working but...