In Java, there is the BigInteger class, which seems to be holding its contents internally as an array of ints. I'm imagining that additions/subtraction/bitShifting of two BigInteger numbers are O(N) "linear operations" as such. In fact, it seems that even multiplication and division are O(N log N)?
Without understanding the special large-number algorithms, would this be a sufficiently accurate general answer?