Does MongoDB use any data structures other than B-trees for its indexes?

According to the documentation at https://www.mongodb.com/docs/manual/indexes/#details, “MongoDB indexes use a B-tree data structure.” Is this true for all indexes in MongoDB, or does it apply only to specific ones? Does MongoDB use any data structures other than B-trees for its indexes? For example, are hashed indexes stored as hash tables, or are they still stored as B-trees?