We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MappedProperty при Advise не соблюдает поведение IReadonlyProperty, а именно не вызывает handler, если значение уже есть.
var test = new ViewableProperty<string>("Hello"); test.Select(x => x + " world!").Advise(Lifetime.Eternal, Debug.Log); test.Advise(Lifetime.Eternal, Debug.Log);
Результат: выводиться только "Hello" Ожидается: выводяться как "Hello", так и "Hello world!"
The text was updated successfully, but these errors were encountered:
(#357) MappedProperty: should produce the current value on Advise
cf48796
(#357) A better fix
c240afc
Merge pull request #418 from JetBrains/im/357.mapped-property-advise
6a58715
ForNeVeR
Successfully merging a pull request may close this issue.
MappedProperty при Advise не соблюдает поведение IReadonlyProperty, а именно не вызывает handler, если значение уже есть.
Результат: выводиться только "Hello"
Ожидается: выводяться как "Hello", так и "Hello world!"
The text was updated successfully, but these errors were encountered: