This file is indexed.

/usr/include/osl/book/bookInMemory.h is in libosl-dev 0.8.0-1.4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* bookInMemory.h
 */
#ifndef OSL_BOOKINMEMORY_H
#define OSL_BOOKINMEMORY_H
#include "osl/hashKey.h"
#include <unordered_map>
#include <string>

namespace osl
{
  namespace book
  {
    class WeightedBook;
    class BookInMemory
    {
      typedef CArray<Move,8> moves_t;
      typedef std::unordered_map<HashKey,moves_t,std::hash<HashKey>> table_t;
      table_t table;
    public:
      ~BookInMemory();

      void find(const HashKey& key, MoveVector& out) const;
      size_t size() const { return table.size(); }
      static const BookInMemory& instance(const std::string& filename="");
    private:
      explicit BookInMemory(const std::string& filename);
      void readAll(const std::string& filename);
      int readRecursive(const HashKey& key, int index, WeightedBook& book, int, int);
    };
  }
  using book::BookInMemory;
}

#endif /* OSL_BOOKINMEMORY_H */
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End: