in docs-content/examples-source/material/autocomplete/autocomplete-display/autocomplete-display-example.ts [23:29]
ngOnInit() {
this.filteredOptions = this.myControl.valueChanges.pipe(
startWith(''),
map(value => (typeof value === 'string' ? value : value.name)),
map(name => (name ? this._filter(name) : this.options.slice())),
);
}