This file is indexed.

/usr/include/blasr/tuples/TupleList.hpp is in libblasr-dev 0~20151014+gitbe5d1bf-2.

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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#ifndef _BLASR_TUPLE_LIST_HPP_
#define _BLASR_TUPLE_LIST_HPP_

#include <stdint.h>
#include <algorithm>
#include <string>
#include <iostream>
#include <fstream>
#include <vector>

#include "Types.h"
#include "tuples/TupleMetrics.hpp"

template<typename T>
class TupleList {
    int listLength;
    TupleMetrics tm;
    public:
    typedef T Tuple;
    std::vector<T> tupleList;

    TupleList(); 

    void Reset(); 
    
    T &operator[](int index); 

    void GetTupleMetrics(TupleMetrics &ptm); 
    
    void SetTupleMetrics(TupleMetrics &ptm); 
    
    int size();
    
    int GetLength();
    
    int InitFromFile(std::string &fileName); 

    void clear(); 

    int WriteToFile(std::string &fileName); 

    //
    // Find one instance of a match.
    //
    int Find(T& tuple); 

    //
    // Find the boundaries of all instances of a match.
    //
    void FindAll(T &tuple, 
        typename std::vector<T>::const_iterator &firstPos, 
        typename std::vector<T>::const_iterator &endPos ); 

    void Append( T&tuple); 

    void Insert(T&tuple); 

    void Sort(); 

    void Print(); 
};

#include "TupleListImpl.hpp"
#endif // _BLASR_TUPLE_LIST_HPP_