Given a computed property
vm.checkedValueCount = ko.computed(function(){
var observables = getCurrentValues(); //an array of ko.observable[]
return _.filter
suppose getCurrentValues() can return different sets of observables which are modified elsewhere in the code
I assume getCurrentValues() is a function. If you could make it a computed, your checkedValueCount would just magically start working.
Can you make getCurrentValues be a computed instead of a function?