newmen/versatile-diamond

View on GitHub
analyzer/lib/generators/code/algorithm/base_algorithm_builder.rb

Summary

Maintainability
A
0 mins
Test Coverage
module VersatileDiamond
  module Generators
    module Code
      module Algorithm

        # Provides base logic for building algorithms
        # @abstract
        class BaseAlgorithmBuilder
          # Generates find algorithm cpp code
          # @return [String] the string with cpp code of find algorithm
          def build
            complete_algorithm.shifted_code
          end
        end

      end
    end
  end
end